From c23a7a4030672e0cc0e97d79044ad07fc3684b30 Mon Sep 17 00:00:00 2001 From: Al Date: Thu, 25 Aug 2016 22:58:52 -0400 Subject: [PATCH] [openaddresses] Ditto for numeric boundary names --- 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 8629cd80..fa3853d4 100644 --- a/scripts/geodata/openaddresses/formatter.py +++ b/scripts/geodata/openaddresses/formatter.py @@ -160,7 +160,7 @@ class OpenAddressesFormatter(object): if key in AddressFormatter.BOUNDARY_COMPONENTS: value = self.components.cleaned_name(value, first_comma_delimited_phrase=True) - if value and len(value) < 2: + if value and len(value) < 2 or is_numeric(value): continue components[key] = value.strip(', ')