James McCool
commited on
Commit
·
d619fee
1
Parent(s):
ecf059f
Remove export dictionary display in app.py: eliminate the output of the export dictionary contents to streamline the user interface and focus on essential information during portfolio processing.
Browse files
app.py
CHANGED
@@ -186,9 +186,6 @@ 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.write("Export Dictionary Contents:")
|
191 |
-
st.write(st.session_state['export_dict'])
|
192 |
|
193 |
st.session_state['origin_portfolio'] = st.session_state['portfolio'].copy()
|
194 |
|
|
|
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 |
|