Skip to content

Commit

Permalink
csv_metadata_quality/check.py: run rye fmt
Browse files Browse the repository at this point in the history
  • Loading branch information
alanorth committed Apr 12, 2024
1 parent ee0b448 commit 736948e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion csv_metadata_quality/check.py
Original file line number Diff line number Diff line change
Expand Up @@ -133,7 +133,7 @@ def suspicious_characters(field, field_name):
return

# List of suspicious characters, for example: ́ˆ~`
suspicious_characters = ["\u00B4", "\u02C6", "\u007E", "\u0060"]
suspicious_characters = ["\u00b4", "\u02c6", "\u007e", "\u0060"]

for character in suspicious_characters:
# Find the position of the suspicious character in the string
Expand Down

0 comments on commit 736948e

Please sign in to comment.