James McCool
commited on
Commit
·
e722ab0
1
Parent(s):
3f2ff48
Reorder NBA and NFL sport selection radio button options
Browse filesSwap 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.
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", ('
|
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
|