James McCool commited on
Commit
fa5ae10
·
1 Parent(s): 0406a82

Add debug output for salary dictionary in app.py

Browse files

- Introduced a st.write statement to display the salary dictionary for debugging purposes.
- Maintained existing functionality while enhancing visibility into the salary data handling process.

Files changed (1) hide show
  1. app.py +2 -0
app.py CHANGED
@@ -117,6 +117,8 @@ with tab1:
117
  st.session_state['team_dict'] = dict(zip(st.session_state['team_df']['Player'], st.session_state['team_df']['Team']))
118
  st.session_state['pos_dict'] = dict(zip(st.session_state['pos_df']['Player'], st.session_state['pos_df']['Pos']))
119
 
 
 
120
  with tab2:
121
  excluded_cols = ['BaseName', 'EntryCount']
122
  if 'Contest' in st.session_state:
 
117
  st.session_state['team_dict'] = dict(zip(st.session_state['team_df']['Player'], st.session_state['team_df']['Team']))
118
  st.session_state['pos_dict'] = dict(zip(st.session_state['pos_df']['Player'], st.session_state['pos_df']['Pos']))
119
 
120
+ st.write(st.session_state['salary_dict'])
121
+
122
  with tab2:
123
  excluded_cols = ['BaseName', 'EntryCount']
124
  if 'Contest' in st.session_state: