James McCool commited on
Commit
31c912d
·
1 Parent(s): 6594d81

Update sport selection options in app.py to include NHL

Browse files

- Added 'NHL' to the sport selection dropdown, expanding user choices and enhancing the versatility of the application.

Files changed (1) hide show
  1. app.py +1 -1
app.py CHANGED
@@ -83,7 +83,7 @@ with tab1:
83
  with search_options:
84
  parse_type = st.selectbox("Manual upload or DB search?", ['Manual', 'DB Search'], key='parse_type')
85
  with sport_options:
86
- sport_select = st.selectbox("Select Sport", ['MLB', 'MMA', 'GOLF', 'NBA'], key='sport_select')
87
  type_var = st.selectbox("Select Game Type", ['Classic', 'Showdown'], key='type_var')
88
  contest_names, curr_info = grab_contest_names(db, sport_select, type_var)
89
 
 
83
  with search_options:
84
  parse_type = st.selectbox("Manual upload or DB search?", ['Manual', 'DB Search'], key='parse_type')
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
  contest_names, curr_info = grab_contest_names(db, sport_select, type_var)
89