James McCool commited on
Commit
a7bb74a
·
1 Parent(s): b9e2709

Enhance app.py by adding a debug statement to display current session state keys, aiding in troubleshooting and improving visibility of session management.

Browse files
Files changed (1) hide show
  1. app.py +2 -0
app.py CHANGED
@@ -116,6 +116,8 @@ def convert_df(array):
116
  roo_data, sd_roo_data, scoring_percentages = init_baselines()
117
  hold_display = roo_data
118
 
 
 
119
  with st.container():
120
  col1, col2, col3 = st.columns([3, 3, 3])
121
  with col1:
 
116
  roo_data, sd_roo_data, scoring_percentages = init_baselines()
117
  hold_display = roo_data
118
 
119
+ st.write("Current session state keys:", list(st.session_state.keys()))
120
+
121
  with st.container():
122
  col1, col2, col3 = st.columns([3, 3, 3])
123
  with col1: