minor streamlit bug fix - Adithya S K
Browse files
app.py
CHANGED
@@ -130,7 +130,7 @@ def main():
|
|
130 |
with option_column1:
|
131 |
on = st.checkbox('Sort by Language')
|
132 |
with option_column2:
|
133 |
-
is_verified = st.checkbox('Verified',
|
134 |
|
135 |
|
136 |
col1, col2 = st.columns(2)
|
|
|
130 |
with option_column1:
|
131 |
on = st.checkbox('Sort by Language')
|
132 |
with option_column2:
|
133 |
+
is_verified = st.checkbox('Verified', value=True)
|
134 |
|
135 |
|
136 |
col1, col2 = st.columns(2)
|