James McCool commited on
Commit
e722ab0
·
1 Parent(s): 3f2ff48

Reorder NBA and NFL sport selection radio button options

Browse files

Swap the order of NBA and NFL in the sport selection radio button to improve visual consistency and user experience. This minor change ensures a more intuitive selection process without altering the underlying functionality.

Files changed (1) hide show
  1. app.py +1 -1
app.py CHANGED
@@ -129,7 +129,7 @@ with tab1:
129
  view_var2 = st.radio("View Type", ("Simple", "Advanced"), key='view_var2')
130
 
131
  with col2:
132
- sport_var2 = st.radio("Sport", ('NFL', 'NBA'), key='sport_var2')
133
  if sport_var2 == 'NBA':
134
  dk_roo_raw = nba_dk_sd_raw
135
  fd_roo_raw = nba_fd_sd_raw
 
129
  view_var2 = st.radio("View Type", ("Simple", "Advanced"), key='view_var2')
130
 
131
  with col2:
132
+ sport_var2 = st.radio("Sport", ('NBA', 'NFL'), key='sport_var2')
133
  if sport_var2 == 'NBA':
134
  dk_roo_raw = nba_dk_sd_raw
135
  fd_roo_raw = nba_fd_sd_raw