Update app.py
Browse files
app.py
CHANGED
@@ -276,7 +276,7 @@ with st.form(key='columns_in_form'):
|
|
276 |
selections.append(col.selectbox(f'Make a Selection', choices, key=i))
|
277 |
submitted = st.form_submit_button('Submit')
|
278 |
if submitted:
|
279 |
-
selections = [i for i in selection for j in
|
280 |
with st.spinner(text="Creating your digest: this will take a few moments."):
|
281 |
chosen = []
|
282 |
|
|
|
276 |
selections.append(col.selectbox(f'Make a Selection', choices, key=i))
|
277 |
submitted = st.form_submit_button('Submit')
|
278 |
if submitted:
|
279 |
+
selections = [i for i in selection for j in selections if i is not None]
|
280 |
with st.spinner(text="Creating your digest: this will take a few moments."):
|
281 |
chosen = []
|
282 |
|