James McCool
commited on
Commit
·
f53d433
1
Parent(s):
92e7b66
Changing the grid exclude options from the working_frame to the map_dict.
Browse files
app.py
CHANGED
|
@@ -2233,7 +2233,7 @@ if selected_tab == 'Manage Portfolio':
|
|
| 2233 |
else:
|
| 2234 |
qb_force = 'No'
|
| 2235 |
if sport_var == 'NASCAR':
|
| 2236 |
-
grid_exclude = st.multiselect("Exclude grids?", options=sorted(list(set(st.session_state['
|
| 2237 |
else:
|
| 2238 |
grid_exclude = []
|
| 2239 |
|
|
|
|
| 2233 |
else:
|
| 2234 |
qb_force = 'No'
|
| 2235 |
if sport_var == 'NASCAR':
|
| 2236 |
+
grid_exclude = st.multiselect("Exclude grids?", options=sorted(list(set(st.session_state['map_dict']['grid_map'].unique()))), default=[])
|
| 2237 |
else:
|
| 2238 |
grid_exclude = []
|
| 2239 |
|