You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
If an address street contains a space in its main part the address is parsed incorrectly.
addr= ('9999 LA TORTOLA SAN DIEGO CA 92129')
{'address_line_1': '12790 LA', 'address_line_2': None, 'city': 'TORTOLA SAN DIEGO', 'state': 'CA', 'postal_code': '92129'}
addr= ('12790 FOO BAR SAN DIEGO CA 92129')
{'address_line_1': '12790 FOO', 'address_line_2': None, 'city': 'BAR SAN DIEGO', 'state': 'CA', 'postal_code': '92129'}
The text was updated successfully, but these errors were encountered:
If an address street contains a space in its main part the address is parsed incorrectly.
The text was updated successfully, but these errors were encountered: