James McCool
commited on
Commit
·
ad9faf9
1
Parent(s):
23ffbed
Update sport selection in app.py to include 'NASCAR' in the options, enhancing user choice for sports selection.
Browse files
app.py
CHANGED
@@ -38,7 +38,7 @@ with st.container():
|
|
38 |
site_var = st.selectbox("Select Site", ['Draftkings', 'Fanduel'])
|
39 |
|
40 |
with col3:
|
41 |
-
sport_var = st.selectbox("Select Sport", ['NFL', 'MLB', 'NBA', 'NHL', 'MMA', 'CS2', 'TENNIS', 'GOLF', 'WNBA'])
|
42 |
|
43 |
with col4:
|
44 |
type_var = st.selectbox("Select Game Type", ['Classic', 'Showdown'])
|
|
|
38 |
site_var = st.selectbox("Select Site", ['Draftkings', 'Fanduel'])
|
39 |
|
40 |
with col3:
|
41 |
+
sport_var = st.selectbox("Select Sport", ['NFL', 'MLB', 'NBA', 'NHL', 'MMA', 'CS2', 'TENNIS', 'NASCAR', 'GOLF', 'WNBA'])
|
42 |
|
43 |
with col4:
|
44 |
type_var = st.selectbox("Select Game Type", ['Classic', 'Showdown'])
|