James McCool commited on
Commit
2496c14
·
1 Parent(s): 1854e4d

Remove debug output for session state variables in app.py

Browse files

- Eliminated display statements for 'calc_toggle', 'projections_df', and 'Contest' to streamline the user interface and reduce clutter during interactions.
- Focused on enhancing the overall user experience by maintaining a cleaner layout in the application.

Files changed (1) hide show
  1. app.py +0 -3
app.py CHANGED
@@ -83,9 +83,6 @@ with tab1:
83
 
84
 
85
  with tab2:
86
- st.write(st.session_state['calc_toggle'])
87
- st.write(st.session_state['projections_df'])
88
- st.write(st.session_state['Contest'])
89
  excluded_cols = ['BaseName', 'EntryCount']
90
  player_columns = [col for col in st.session_state['Contest'].columns if col not in excluded_cols]
91
  for col in player_columns:
 
83
 
84
 
85
  with tab2:
 
 
 
86
  excluded_cols = ['BaseName', 'EntryCount']
87
  player_columns = [col for col in st.session_state['Contest'].columns if col not in excluded_cols]
88
  for col in player_columns: