James McCool commited on
Commit
55a9933
·
1 Parent(s): 4127d38

Add WNBA option to sport selection in app.py

Browse files

- Updated the sport selection dropdown to include 'WNBA', expanding the available options for users and enhancing the application's versatility in handling different sports.

Files changed (1) hide show
  1. app.py +1 -1
app.py CHANGED
@@ -83,7 +83,7 @@ with tab1:
83
  sport_options, date_options = st.columns(2)
84
  parse_type = 'Manual'
85
  with sport_options:
86
- sport_select = st.selectbox("Select Sport", ['MLB', 'MMA', 'GOLF', 'NBA', 'NHL'], key='sport_select')
87
  type_var = st.selectbox("Select Game Type", ['Classic', 'Showdown'], key='type_var')
88
  try:
89
  contest_names, curr_info = grab_contest_names(db, sport_select, type_var)
 
83
  sport_options, date_options = st.columns(2)
84
  parse_type = 'Manual'
85
  with sport_options:
86
+ sport_select = st.selectbox("Select Sport", ['MLB', 'MMA', 'GOLF', 'NBA', 'NHL', 'WNBA'], key='sport_select')
87
  type_var = st.selectbox("Select Game Type", ['Classic', 'Showdown'], key='type_var')
88
  try:
89
  contest_names, curr_info = grab_contest_names(db, sport_select, type_var)