Spaces:
Runtime error
Runtime error
Update app.py
Browse files
app.py
CHANGED
@@ -93,7 +93,7 @@ with tab1:
|
|
93 |
team_var1 = st.radio("Do you want a frame with specific teams?", ('Full Slate', 'Specific Teams'), key='team_var1')
|
94 |
if team_var1 == 'Specific Teams':
|
95 |
team_var2 = st.multiselect('Which teams do you want?', options = DK_seed['Team'].unique())
|
96 |
-
elif team_var1 == 'Full
|
97 |
team_var2 = DK_seed.Team.values.tolist()
|
98 |
|
99 |
with col2:
|
|
|
93 |
team_var1 = st.radio("Do you want a frame with specific teams?", ('Full Slate', 'Specific Teams'), key='team_var1')
|
94 |
if team_var1 == 'Specific Teams':
|
95 |
team_var2 = st.multiselect('Which teams do you want?', options = DK_seed['Team'].unique())
|
96 |
+
elif team_var1 == 'Full Slate':
|
97 |
team_var2 = DK_seed.Team.values.tolist()
|
98 |
|
99 |
with col2:
|