Skip to content

Commit

Permalink
debugging
Browse files Browse the repository at this point in the history
  • Loading branch information
davedavemckay committed Jul 25, 2024
1 parent 3472429 commit 1c36438
Showing 1 changed file with 5 additions and 0 deletions.
5 changes: 5 additions & 0 deletions csd3-side/scripts/gen_exclude_list.py
Original file line number Diff line number Diff line change
Expand Up @@ -37,6 +37,11 @@

print(df.head())
print(df.tail())
for row in df['LOCAL_FOLDER'].iterrows():
if type(row[1]) != str:
print(row[1])
print(type(row[1]))
raise ValueError('Non-string LOCAL_FOLDER')
df = df.groupby('LOCAL_FOLDER').agg(','.join).reset_index().dropna()
print(df['LOCAL_FOLDER'].head())
# df.to_csv('test.csv', index=False)
Expand Down

0 comments on commit 1c36438

Please sign in to comment.