James McCool
commited on
Commit
·
ae44282
1
Parent(s):
85f2b5f
Add match confirmation output in app.py: include a statement to display matched portfolio names, enhancing user feedback and improving traceability of the matching process.
Browse files
app.py
CHANGED
@@ -157,6 +157,7 @@ with tab1:
|
|
157 |
)
|
158 |
if match:
|
159 |
portfolio_match_dict[portfolio_name] = match[0]
|
|
|
160 |
else:
|
161 |
portfolio_match_dict[portfolio_name] = portfolio_name
|
162 |
unmatched_names.append(portfolio_name)
|
|
|
157 |
)
|
158 |
if match:
|
159 |
portfolio_match_dict[portfolio_name] = match[0]
|
160 |
+
st.write(f"{portfolio_name} matched to {match[0]}")
|
161 |
else:
|
162 |
portfolio_match_dict[portfolio_name] = portfolio_name
|
163 |
unmatched_names.append(portfolio_name)
|