Update app.py
Browse files
app.py
CHANGED
@@ -250,7 +250,7 @@ with st.form(key='columns_in_form'):
|
|
250 |
selections.append(col.selectbox(f'Make a Selection', choices, key=i))
|
251 |
submitted = st.form_submit_button('Submit')
|
252 |
if submitted:
|
253 |
-
selections = [i for i in
|
254 |
with st.spinner(text="Creating your digest: this will take a few moments."):
|
255 |
chosen = []
|
256 |
|
|
|
250 |
selections.append(col.selectbox(f'Make a Selection', choices, key=i))
|
251 |
submitted = st.form_submit_button('Submit')
|
252 |
if submitted:
|
253 |
+
selections = [i for i in selections for j in selections if i is not None]
|
254 |
with st.spinner(text="Creating your digest: this will take a few moments."):
|
255 |
chosen = []
|
256 |
|