James McCool
commited on
Commit
·
92753be
1
Parent(s):
606905f
Add debug output in app.py: include a statement to display the export dictionary after applying matches, aiding in the verification of data processing.
Browse files
app.py
CHANGED
@@ -186,6 +186,7 @@ with tab1:
|
|
186 |
# Apply the matches
|
187 |
projections['upload_match'] = projections['player_names'].map(match_dict)
|
188 |
st.session_state['export_dict'] = match_dict
|
|
|
189 |
|
190 |
st.session_state['origin_portfolio'] = st.session_state['portfolio'].copy()
|
191 |
|
|
|
186 |
# Apply the matches
|
187 |
projections['upload_match'] = projections['player_names'].map(match_dict)
|
188 |
st.session_state['export_dict'] = match_dict
|
189 |
+
st.write(st.session_state['export_dict'])
|
190 |
|
191 |
st.session_state['origin_portfolio'] = st.session_state['portfolio'].copy()
|
192 |
|