Spaces:
Running
Running
Update app.py
Browse files
app.py
CHANGED
@@ -201,7 +201,7 @@ with tab2:
|
|
201 |
if split_var2 == 'Specific Teams':
|
202 |
team_var2 = st.multiselect('Which teams would you like to include in the Table?', options = wr_matchups['Team'].unique())
|
203 |
elif split_var2 == 'All Teams':
|
204 |
-
team_var2 = wr_matchups['
|
205 |
if stat_type_var2 == 'WR/TE Coverage Matchups':
|
206 |
slate_table_instance = wr_matchups
|
207 |
slate_table_instance = slate_table_instance.set_index('name')
|
|
|
201 |
if split_var2 == 'Specific Teams':
|
202 |
team_var2 = st.multiselect('Which teams would you like to include in the Table?', options = wr_matchups['Team'].unique())
|
203 |
elif split_var2 == 'All Teams':
|
204 |
+
team_var2 = wr_matchups['Team'].unique().tolist()
|
205 |
if stat_type_var2 == 'WR/TE Coverage Matchups':
|
206 |
slate_table_instance = wr_matchups
|
207 |
slate_table_instance = slate_table_instance.set_index('name')
|