From c600f05f06ce85d9d63c17912e669633287d3be9 Mon Sep 17 00:00:00 2001 From: Al Date: Sat, 4 Feb 2017 15:30:46 -0500 Subject: [PATCH] [openaddresses] adding Czech Republic to the street not required set --- scripts/geodata/openaddresses/formatter.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/scripts/geodata/openaddresses/formatter.py b/scripts/geodata/openaddresses/formatter.py index a4d6f6fa..d14fe82b 100644 --- a/scripts/geodata/openaddresses/formatter.py +++ b/scripts/geodata/openaddresses/formatter.py @@ -418,7 +418,7 @@ class OpenAddressesFormatter(object): unit = components.get(AddressFormatter.UNIT, None) - street_required = country != Countries.JAPAN and country not in Countries.FORMER_SOVIET_UNION_COUNTRIES + street_required = country not in (Countries.JAPAN, Countries.CZECH_REPUBLIC) and country not in Countries.FORMER_SOVIET_UNION_COUNTRIES postcode = components.get(AddressFormatter.POSTCODE, None)