James McCool
commited on
Commit
·
505349b
1
Parent(s):
a138121
Update excluded_cols in app.py to include 'Lineup Edge_Raw', enhancing the data handling for portfolio management.
Browse files
app.py
CHANGED
|
@@ -1321,7 +1321,7 @@ if selected_tab == 'Manage Portfolio':
|
|
| 1321 |
if submitted:
|
| 1322 |
del st.session_state['working_frame']
|
| 1323 |
|
| 1324 |
-
excluded_cols = ['salary', 'median', 'Own', 'Finish_percentile', 'Dupes', 'Stack', 'Size', 'Win%', 'Lineup Edge', 'Weighted Own', 'Geomean', 'Diversity']
|
| 1325 |
|
| 1326 |
|
| 1327 |
if 'working_frame' not in st.session_state:
|
|
|
|
| 1321 |
if submitted:
|
| 1322 |
del st.session_state['working_frame']
|
| 1323 |
|
| 1324 |
+
excluded_cols = ['salary', 'median', 'Own', 'Finish_percentile', 'Dupes', 'Stack', 'Size', 'Win%', 'Lineup Edge', 'Lineup Edge_Raw', 'Weighted Own', 'Geomean', 'Diversity']
|
| 1325 |
|
| 1326 |
|
| 1327 |
if 'working_frame' not in st.session_state:
|