1
0
mirror of https://github.com/ilri/csv-metadata-quality.git synced 2024-11-28 16:48:20 +01:00

Compare commits

..

No commits in common. "0cf0bc97f0649b1362d18a8fa700c40ecf94f54f" and "b9c44aed7db4a5c2c387a63510f0824a3e9c895e" have entirely different histories.

View File

@ -361,11 +361,10 @@ def countries_match_regions(row):
)
# Add the missing regions back to the row, paying attention to whether
# or not the row's region column is None (aka null) or just an empty
# string (length would be 0).
if row[region_column_name] is not None and len(row[region_column_name]) > 0:
row[region_column_name] = (
row[region_column_name] + "||" + "||".join(missing_regions)
# or not the row's regions are blank or not.
if row[region_column_name] is not None:
row[region_column_name] = row[region_column_name] + "||".join(
missing_regions
)
else:
row[region_column_name] = "||".join(missing_regions)