Skip to content

Commit

Permalink
.
Browse files Browse the repository at this point in the history
  • Loading branch information
davedavemckay committed Jul 24, 2024
1 parent dd49415 commit 56946be
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion csd3-side/scripts/gen_exclude_list.py
Original file line number Diff line number Diff line change
Expand Up @@ -7,9 +7,9 @@ def remove_local_files(df,local_folder):
for root, dirs, files in os.walk(local_folder):
print(len(df))
these_local_files = []
print('files:', files)
for f in files:
these_local_files.append(os.path.join(root, f))
print('these_local_files:', these_local_files)
df = df[~df['LOCAL_PATH'].isin(these_local_files)]

def generate_exclude_list(df, local_folder):
Expand Down

0 comments on commit 56946be

Please sign in to comment.