Skip to content

Commit

Permalink
chore: fmt document
Browse files Browse the repository at this point in the history
  • Loading branch information
Ovler-Young committed Dec 2, 2024
1 parent 77452ef commit 705787d
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/ia_collection_analyzer/streamlit.py
Original file line number Diff line number Diff line change
Expand Up @@ -412,7 +412,7 @@ def safe_map(x):
)
if not matching_rows.empty:
preview_rows.append(matching_rows)

# Get some unmatched samples too
mapped_values = {
s for m in st.session_state.mapping_table for s in m["sources"]
Expand All @@ -427,7 +427,7 @@ def safe_map(x):
preview_df = pd.concat(preview_rows)
preview_df = pd.DataFrame(
{
"Original": preview_df[source_col],
"Original": preview_df[source_col],
"Transformed": preview_df[source_col].map(safe_map),
}
)
Expand Down

0 comments on commit 705787d

Please sign in to comment.