Skip to content

Commit

Permalink
Update validate.py
Browse files Browse the repository at this point in the history
  • Loading branch information
jkwakman committed Jul 15, 2024
1 parent 91decf6 commit 690cfe1
Showing 1 changed file with 0 additions and 1 deletion.
1 change: 0 additions & 1 deletion .github/workflows/validate.py
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,6 @@ def validate_csv(file_path):
non_unique_cookies = df[df.duplicated('Cookie / Data Key name', keep=False)]['Cookie / Data Key name']
non_unique_cookies_str = ', '.join(non_unique_cookies)
print(f"::warning file=open-cookie-database.csv,line=1,col=1::'Cookie / Data Key name' contains non-unique values: {non_unique_cookies_str}. Please check for duplicates.")
print(non_unique_cookies)

print("CSV file is valid.")
return True
Expand Down

0 comments on commit 690cfe1

Please sign in to comment.