James McCool commited on
Commit
46cffe3
·
1 Parent(s): c8b2207

Update sport selection in app.py: add 'CS2' to the sport selection dropdown, expanding user options for game type selection.

Browse files
Files changed (1) hide show
  1. app.py +1 -1
app.py CHANGED
@@ -715,7 +715,7 @@ with tab2:
715
  st.session_state.clear()
716
 
717
  with col2:
718
- sport_var = st.selectbox("Select Sport", ['NFL', 'MLB', 'NBA', 'NHL', 'MMA'])
719
  type_var = st.selectbox("Select Game Type", ['Classic', 'Showdown'])
720
 
721
  with col3:
 
715
  st.session_state.clear()
716
 
717
  with col2:
718
+ sport_var = st.selectbox("Select Sport", ['NFL', 'MLB', 'NBA', 'NHL', 'MMA', 'CS2'])
719
  type_var = st.selectbox("Select Game Type", ['Classic', 'Showdown'])
720
 
721
  with col3: