James McCool
commited on
Commit
·
51d04e4
1
Parent(s):
92753be
Refactor debug output in app.py: adjust the placement of the export dictionary display statement to ensure it appears after applying matches, improving clarity in data processing verification.
Browse files
app.py
CHANGED
@@ -186,8 +186,8 @@ 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 |
-
st.write(st.session_state['export_dict'])
|
190 |
|
|
|
191 |
st.session_state['origin_portfolio'] = st.session_state['portfolio'].copy()
|
192 |
|
193 |
# with tab2:
|
|
|
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.write(st.session_state['export_dict'])
|
191 |
st.session_state['origin_portfolio'] = st.session_state['portfolio'].copy()
|
192 |
|
193 |
# with tab2:
|