James McCool commited on
Commit
eb50f14
·
1 Parent(s): 053d82e

Remove 'Reduce Volatility' option from preset selection in app.py to streamline user choices. This change simplifies the interface for lineup management, focusing on the most relevant presets for users.

Browse files
Files changed (1) hide show
  1. app.py +1 -1
app.py CHANGED
@@ -1113,7 +1113,7 @@ with tab2:
1113
  with st.expander('Presets'):
1114
  st.info("Still heavily in testing here, I'll announce when they are ready for use.")
1115
  with st.form(key='Small Field Preset'):
1116
- preset_choice = st.selectbox("Preset", options=['Small Field (Heavy Own)', 'Large Field (Manage Diversity)', 'Hedge Chalk (Manage Leverage)', 'Volatility (Heavy Lineup Edge)', 'Reduce Volatility (Manage Own)'], index=0)
1117
  lineup_target = st.number_input("Lineups to produce", value=150, min_value=1, step=1)
1118
  submitted = st.form_submit_button("Submit")
1119
  if submitted:
 
1113
  with st.expander('Presets'):
1114
  st.info("Still heavily in testing here, I'll announce when they are ready for use.")
1115
  with st.form(key='Small Field Preset'):
1116
+ preset_choice = st.selectbox("Preset", options=['Small Field (Heavy Own)', 'Large Field (Manage Diversity)', 'Hedge Chalk (Manage Leverage)', 'Volatility (Heavy Lineup Edge)'], index=0)
1117
  lineup_target = st.number_input("Lineups to produce", value=150, min_value=1, step=1)
1118
  submitted = st.form_submit_button("Submit")
1119
  if submitted: