James McCool commited on
Commit
0b88791
·
1 Parent(s): 4390bf0

Update excluded columns in app.py to include 'Similarity Score' for improved data handling in portfolio processing.

Browse files
Files changed (1) hide show
  1. app.py +1 -1
app.py CHANGED
@@ -823,7 +823,7 @@ with tab2:
823
  if submitted:
824
  del st.session_state['working_frame']
825
 
826
- excluded_cols = ['salary', 'median', 'Own', 'Finish_percentile', 'Dupes', 'Stack', 'Size', 'Win%', 'Lineup Edge', 'Weighted Own', 'Geomean']
827
 
828
  if 'working_frame' not in st.session_state:
829
  st.session_state['working_frame'] = st.session_state['origin_portfolio'].copy()
 
823
  if submitted:
824
  del st.session_state['working_frame']
825
 
826
+ excluded_cols = ['salary', 'median', 'Own', 'Finish_percentile', 'Dupes', 'Stack', 'Size', 'Win%', 'Lineup Edge', 'Weighted Own', 'Geomean', 'Similarity Score']
827
 
828
  if 'working_frame' not in st.session_state:
829
  st.session_state['working_frame'] = st.session_state['origin_portfolio'].copy()