1
0
mirror of https://github.com/ilri/csv-metadata-quality.git synced 2025-05-10 07:06:00 +02:00

Fix whitespace errors found by flake8

This commit is contained in:
2019-07-28 17:47:28 +03:00
parent c6e7d6d9b5
commit 87b1997051
4 changed files with 7 additions and 3 deletions

View File

@ -1,5 +1,6 @@
import csv_metadata_quality.fix as fix
def test_fix_leading_whitespace():
'''Test fixing leading whitespace.'''
@ -7,6 +8,7 @@ def test_fix_leading_whitespace():
assert fix.whitespace(value) == 'Alan'
def test_fix_trailing_whitespace():
'''Test fixing trailing whitespace.'''
@ -14,6 +16,7 @@ def test_fix_trailing_whitespace():
assert fix.whitespace(value) == 'Alan'
def test_fix_excessive_whitespace():
'''Test fixing excessive whitespace.'''