James McCool
commited on
Commit
·
3d4e38c
1
Parent(s):
0bb17b9
Add debug output for salary dictionary in app.py
Browse files- Included a line to display the contents of the salary dictionary in the Streamlit app, aiding in debugging and ensuring the correct data is being processed.
- This change enhances visibility into the session state for better tracking of salary-related information during runtime.
app.py
CHANGED
@@ -145,6 +145,7 @@ with tab1:
|
|
145 |
st.session_state['salary_dict'] = st.session_state['info_maps']['salary_dict']
|
146 |
st.session_state['team_dict'] = st.session_state['info_maps']['team_dict']
|
147 |
st.session_state['pos_dict'] = st.session_state['info_maps']['position_dict']
|
|
|
148 |
|
149 |
with tab2:
|
150 |
excluded_cols = ['BaseName', 'EntryCount']
|
|
|
145 |
st.session_state['salary_dict'] = st.session_state['info_maps']['salary_dict']
|
146 |
st.session_state['team_dict'] = st.session_state['info_maps']['team_dict']
|
147 |
st.session_state['pos_dict'] = st.session_state['info_maps']['position_dict']
|
148 |
+
st.write(st.session_state['salary_dict'])
|
149 |
|
150 |
with tab2:
|
151 |
excluded_cols = ['BaseName', 'EntryCount']
|