1
0
mirror of https://github.com/ilri/csv-metadata-quality.git synced 2024-11-18 20:17:04 +01:00

README.md: Update note about unsafe options

This commit is contained in:
Alan Orth 2019-07-29 17:25:42 +03:00
parent 7f781d7077
commit e33551776c
Signed by: alanorth
GPG Key ID: 0FB860CC9C45B1B9

View File

@ -46,7 +46,7 @@ To validate and clean a CSV file you must specify input and output files using t
$ python -m csv_metadata_quality -i data/test.csv -o /tmp/test.csv $ python -m csv_metadata_quality -i data/test.csv -o /tmp/test.csv
``` ```
You can enable "unsafe fixes" with the `--unsafe-fixes` option. This will attempt to fix things like invalid multi-value separators ("|"). It's possible that a metadata value could legitimately use "|" but in my experience this is rather always an error where the user meant to enter multiple values for a field, for example Kenya||Tanzania. You can enable "unsafe fixes" with the `--unsafe-fixes` option. This will attempt to fix things like invalid multi-value separators ("|"). It's possible that a metadata value could legitimately use "|" but in my experience this is rather always an error where the user meant to enter multiple values for a field, for example `Kenya||Tanzania`.
## Todo ## Todo