Spaces:
Running
Running
James McCool
commited on
Commit
·
9c7ad76
1
Parent(s):
e27c475
Update app.py to include additional slate options ('Secondary Slate' and 'Turbo Slate') in the data loading selection, improving user flexibility and enhancing the overall experience.
Browse files
app.py
CHANGED
@@ -273,7 +273,7 @@ with tab1:
|
|
273 |
st.header("Scoring Percentages")
|
274 |
with st.expander("Info and Filters"):
|
275 |
with st.container():
|
276 |
-
slate_var1 = st.radio("Which data are you loading?", ('Main Slate', '
|
277 |
own_var1 = st.radio("How would you like to display team ownership?", ('Sum', 'Average'), key='own_var1')
|
278 |
|
279 |
if slate_var1 == 'Main Slate':
|
|
|
273 |
st.header("Scoring Percentages")
|
274 |
with st.expander("Info and Filters"):
|
275 |
with st.container():
|
276 |
+
slate_var1 = st.radio("Which data are you loading?", ('Main Slate', 'Secondary Slate', 'Turbo Slate'), key='slate_var1')
|
277 |
own_var1 = st.radio("How would you like to display team ownership?", ('Sum', 'Average'), key='own_var1')
|
278 |
|
279 |
if slate_var1 == 'Main Slate':
|