James McCool
commited on
Commit
·
9b0d8bc
1
Parent(s):
d61cf96
Add debug output for export dictionary in app.py: include a display of the generated export dictionary to enhance user feedback and facilitate debugging during the export process.
Browse files
app.py
CHANGED
@@ -176,6 +176,7 @@ with tab1:
|
|
176 |
# Apply the matches
|
177 |
projections['upload_match'] = projections['player_names'].map(match_dict)
|
178 |
st.session_state['export_dict'] = dict(zip(projections['player_names'], projections['upload_match']))
|
|
|
179 |
|
180 |
st.session_state['origin_portfolio'] = st.session_state['portfolio'].copy()
|
181 |
|
|
|
176 |
# Apply the matches
|
177 |
projections['upload_match'] = projections['player_names'].map(match_dict)
|
178 |
st.session_state['export_dict'] = dict(zip(projections['player_names'], projections['upload_match']))
|
179 |
+
st.write(st.session_state['export_dict'])
|
180 |
|
181 |
st.session_state['origin_portfolio'] = st.session_state['portfolio'].copy()
|
182 |
|