James McCool commited on
Commit
3d97c49
·
1 Parent(s): 66b0ac2

Minor UI refinement: Rename "Display Options" to "Data Options" expander

Browse files
Files changed (1) hide show
  1. app.py +2 -2
app.py CHANGED
@@ -425,7 +425,7 @@ with tab2:
425
  for key in st.session_state.keys():
426
  del st.session_state[key]
427
 
428
- with st.expander("Display Options"):
429
  col1, col2, col3, col4, col5 = st.columns(5)
430
  with col1:
431
  slate_var1 = st.radio("Which data are you loading?", ('Main Slate', 'Just the Main Slate'))
@@ -477,7 +477,7 @@ with tab2:
477
  file_name='NBA_optimals_export.csv',
478
  mime='text/csv',
479
  )
480
-
481
  if site_var1 == 'Draftkings':
482
  if 'working_seed' in st.session_state:
483
  st.session_state.working_seed = st.session_state.working_seed
 
425
  for key in st.session_state.keys():
426
  del st.session_state[key]
427
 
428
+ with st.expander("Data Options"):
429
  col1, col2, col3, col4, col5 = st.columns(5)
430
  with col1:
431
  slate_var1 = st.radio("Which data are you loading?", ('Main Slate', 'Just the Main Slate'))
 
477
  file_name='NBA_optimals_export.csv',
478
  mime='text/csv',
479
  )
480
+
481
  if site_var1 == 'Draftkings':
482
  if 'working_seed' in st.session_state:
483
  st.session_state.working_seed = st.session_state.working_seed