Skip to content

Commit

Permalink
Remove ":" on address
Browse files Browse the repository at this point in the history
  • Loading branch information
atao committed Jan 25, 2024
1 parent 39293ad commit 8538186
Showing 1 changed file with 1 addition and 0 deletions.
1 change: 1 addition & 0 deletions geocoder/addresses_matcher.py
Original file line number Diff line number Diff line change
Expand Up @@ -233,6 +233,7 @@ def standardize_address(address):
# Remove ","
address = address.replace(",","").strip()
address = address.replace(";","").strip()
address = address.replace(":","").strip()

parts = address.split()
if len(parts) > 1:
Expand Down

0 comments on commit 8538186

Please sign in to comment.