mirror of
https://github.com/ilri/csv-metadata-quality.git
synced 2025-05-09 14:46:00 +02:00
Add check for invalid multi-value separators
This commit is contained in:
@ -14,6 +14,9 @@ def run():
|
||||
|
||||
df[column] = df[column].apply(fix.whitespace)
|
||||
|
||||
# Run invalid multi-value separator check on all columns
|
||||
df[column] = df[column].apply(check.separators)
|
||||
|
||||
if column == 'dc.identifier.issn':
|
||||
df[column] = df[column].apply(check.issn)
|
||||
|
||||
|
Reference in New Issue
Block a user