fix liniting problems

This commit is contained in:
Sarah Hoffmann
2022-06-08 06:33:11 +02:00
parent 2eca9fc8af
commit 67dfa38e60

View File

@@ -33,7 +33,7 @@ def _to_float(num, max_value):
return num return num
class _CountryPostcodesCollector: class _PostcodeCollector:
""" Collector for postcodes of a single country. """ Collector for postcodes of a single country.
""" """
@@ -204,7 +204,7 @@ def update_postcodes(dsn, project_dir, tokenizer):
if collector is None or country != collector.country: if collector is None or country != collector.country:
if collector is not None: if collector is not None:
collector.commit(conn, analyzer, project_dir) collector.commit(conn, analyzer, project_dir)
collector = _CountryPostcodesCollector(country, matcher.get_matcher(country)) collector = _PostcodeCollector(country, matcher.get_matcher(country))
todo_countries.discard(country) todo_countries.discard(country)
collector.add(postcode, x, y) collector.add(postcode, x, y)
@@ -213,7 +213,8 @@ def update_postcodes(dsn, project_dir, tokenizer):
# Now handle any countries that are only in the postcode table. # Now handle any countries that are only in the postcode table.
for country in todo_countries: for country in todo_countries:
_CountryPostcodesCollector(country, matcher.get_matcher(country)).commit(conn, analyzer, project_dir) fmt = matcher.get_matcher(country)
_PostcodeCollector(country, fmt).commit(conn, analyzer, project_dir)
conn.commit() conn.commit()