1
0
mirror of https://github.com/ilri/csv-metadata-quality.git synced 2025-05-09 14:46:00 +02:00

Make output less debuggy

This commit is contained in:
2019-07-27 09:21:13 +03:00
parent a849615b41
commit c47c064a13
2 changed files with 1 additions and 3 deletions

View File

@ -10,8 +10,6 @@ def run():
# Fix whitespace in all columns
for column in df.columns.values.tolist():
print(f'DEBUG: {column}')
# Run whitespace fix on all columns
df[column] = df[column].apply(fix.whitespace)