From: Sarah Hoffmann Date: Wed, 8 Jun 2022 04:33:11 +0000 (+0200) Subject: fix liniting problems X-Git-Tag: v4.1.0~22^2~11 X-Git-Url: https://git.openstreetmap.org./nominatim.git/commitdiff_plain/67dfa38e608a6e63dbcae40530c46a56971cca0a fix liniting problems --- diff --git a/nominatim/tools/postcodes.py b/nominatim/tools/postcodes.py index 26b96099..27fbcc9b 100644 --- a/nominatim/tools/postcodes.py +++ b/nominatim/tools/postcodes.py @@ -33,7 +33,7 @@ def _to_float(num, max_value): return num -class _CountryPostcodesCollector: +class _PostcodeCollector: """ 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 not None: collector.commit(conn, analyzer, project_dir) - collector = _CountryPostcodesCollector(country, matcher.get_matcher(country)) + collector = _PostcodeCollector(country, matcher.get_matcher(country)) todo_countries.discard(country) 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. 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()