Changed how the path exclusions get read back in after approval, now paths can be combined in the review process

This commit is contained in:
=
2025-08-29 09:08:05 -04:00
parent 9a7de412f6
commit fa4fc6bd7e
2 changed files with 3 additions and 3 deletions
+1 -1
View File
@@ -116,7 +116,7 @@ def mask_from_csv(df, csv_path, filepath_col):
# Keep only rows in df that are in approved_files
masked_df = df[df[filepath_col].isin(approved_files)].copy()
remainder = df[~df[filepath_col].isin(approved_files)].copy()
return masked_df, remainder
return remainder
def filter_and_drop(approved, eligiblepaths, min_hashes):