Merged in bugfix/reimb_dates (pull request #649)
Bugfix/reimb dates to Main * added reimb dates split * Merged main into bugfix/reimb_dates * prompt changes * added to postprocessing * fixed key issues * modified split function * removed print statements * Merge branch 'main' into bugfix/reimb_dates * update import * moved split date upstream * moved split dates to one to n funcs * Merged main into bugfix/reimb_dates Approved-by: Katon Minhas
This commit is contained in:
committed by
Katon Minhas
parent
a3df2f3e15
commit
0d774acf7a
@@ -724,7 +724,5 @@ def deduplicate_provider_columns(df: pd.DataFrame) -> pd.DataFrame:
|
||||
deduped_list.append(item)
|
||||
|
||||
# Update the DataFrame
|
||||
df.at[index, other_col] = (
|
||||
" | ".join(deduped_list) if deduped_list else ""
|
||||
)
|
||||
return df
|
||||
df.at[index, other_col] = " | ".join(deduped_list) if deduped_list else ""
|
||||
return df
|
||||
Reference in New Issue
Block a user