James McCool commited on
Commit
913cfd5
·
1 Parent(s): a4e6673

Update sport selection options in app.py: add 'WNBA' to the list of available sports in the dropdown menu, enhancing user choice and application functionality.

Browse files
Files changed (1) hide show
  1. app.py +1 -1
app.py CHANGED
@@ -36,7 +36,7 @@ with st.container():
36
  site_var = st.selectbox("Select Site", ['Draftkings', 'Fanduel'])
37
 
38
  with col3:
39
- sport_var = st.selectbox("Select Sport", ['NFL', 'MLB', 'NBA', 'NHL', 'MMA', 'CS2', 'TENNIS', 'GOLF'])
40
 
41
  with col4:
42
  type_var = st.selectbox("Select Game Type", ['Classic', 'Showdown'])
 
36
  site_var = st.selectbox("Select Site", ['Draftkings', 'Fanduel'])
37
 
38
  with col3:
39
+ sport_var = st.selectbox("Select Sport", ['NFL', 'MLB', 'NBA', 'NHL', 'MMA', 'CS2', 'TENNIS', 'GOLF', 'WNBA'])
40
 
41
  with col4:
42
  type_var = st.selectbox("Select Game Type", ['Classic', 'Showdown'])