James McCool commited on
Commit
1e90b7c
·
1 Parent(s): b4512a0

removed floor and ceiling from simple view

Browse files
Files changed (1) hide show
  1. app.py +1 -1
app.py CHANGED
@@ -217,7 +217,7 @@ with tab1:
217
  if view_var2 == 'Advanced':
218
  display_proj = display_proj
219
  elif view_var2 == 'Simple':
220
- display_proj = display_proj[['Player', 'Team', 'Position', 'Floor', 'Median', 'Ceiling', 'GPP%', 'ValX']]
221
  display_proj = display_proj.set_index('Player')
222
  st.session_state.display_proj = display_proj
223
 
 
217
  if view_var2 == 'Advanced':
218
  display_proj = display_proj
219
  elif view_var2 == 'Simple':
220
+ display_proj = display_proj[['Player', 'Team', 'Position', 'Median', 'GPP%', 'ValX']]
221
  display_proj = display_proj.set_index('Player')
222
  st.session_state.display_proj = display_proj
223