green commited on
Commit
13d98ae
·
1 Parent(s): f7afba1

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +1 -1
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 selection 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
 
 
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