mirror of
https://github.com/ilri/csv-metadata-quality.git
synced 2024-12-22 12:12:18 +01:00
csv_metadata_quality/app.py: Use simpler column iteration
I don't know where I got the other one...
This commit is contained in:
parent
3d5c8bdf5d
commit
f304ca6a33
@ -60,7 +60,7 @@ def run(argv):
|
|||||||
# Read all fields as strings so dates don't get converted from 1998 to 1998.0
|
# Read all fields as strings so dates don't get converted from 1998 to 1998.0
|
||||||
df = pd.read_csv(args.input_file, dtype=str)
|
df = pd.read_csv(args.input_file, dtype=str)
|
||||||
|
|
||||||
for column in df.columns.values.tolist():
|
for column in df.columns:
|
||||||
# Check if the user requested to skip any fields
|
# Check if the user requested to skip any fields
|
||||||
if args.exclude_fields:
|
if args.exclude_fields:
|
||||||
skip = False
|
skip = False
|
||||||
|
Loading…
Reference in New Issue
Block a user