Multichem commited on
Commit
8679c54
·
verified ·
1 Parent(s): b4ea008

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +1 -1
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 Players':
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: