James McCool
commited on
Commit
·
5581d98
1
Parent(s):
911d70e
Update excluded columns in app.py: replace 'Dupes' with 'Size' in the list of excluded columns to reflect recent changes in player size selection functionality.
Browse files
app.py
CHANGED
@@ -821,7 +821,7 @@ with tab2:
|
|
821 |
if submitted:
|
822 |
del st.session_state['working_frame']
|
823 |
|
824 |
-
excluded_cols = ['salary', 'median', 'Own', 'Finish_percentile', 'Dupes', 'Stack', 'Win%', 'Lineup Edge', 'Weighted Own', 'Geomean']
|
825 |
|
826 |
if 'working_frame' not in st.session_state:
|
827 |
st.session_state['working_frame'] = st.session_state['origin_portfolio'].copy()
|
|
|
821 |
if submitted:
|
822 |
del st.session_state['working_frame']
|
823 |
|
824 |
+
excluded_cols = ['salary', 'median', 'Own', 'Finish_percentile', 'Dupes', 'Stack', 'Size', 'Win%', 'Lineup Edge', 'Weighted Own', 'Geomean']
|
825 |
|
826 |
if 'working_frame' not in st.session_state:
|
827 |
st.session_state['working_frame'] = st.session_state['origin_portfolio'].copy()
|