Resolve PROV_INFO issue

This commit is contained in:
Katon Minhas
2026-02-04 01:41:09 -05:00
parent bafb92c684
commit 2c76b8a92b
4 changed files with 90 additions and 56 deletions
@@ -677,6 +677,10 @@ def deduplicate_provider_columns(df: pd.DataFrame) -> pd.DataFrame:
df.at[index, other_col] = []
continue
# Normalize other_vals to a list if it's a string
if isinstance(other_vals, str):
other_vals = [other_vals]
# Normalize group values (list or empty)
group_vals = group_vals or []