Update app.py
Browse files
app.py
CHANGED
@@ -31,7 +31,7 @@ def replace_multiple_spaces(text):
|
|
31 |
def parse_postal_address_can(text):
|
32 |
"""Parse the given Canadian address into its components.
|
33 |
"""
|
34 |
-
text = text.lower
|
35 |
text = text.replace(".", "")
|
36 |
#text = replace_punctuation_with_space(text)
|
37 |
text = replace_multiple_spaces(text)
|
|
|
31 |
def parse_postal_address_can(text):
|
32 |
"""Parse the given Canadian address into its components.
|
33 |
"""
|
34 |
+
text = text.lower()
|
35 |
text = text.replace(".", "")
|
36 |
#text = replace_punctuation_with_space(text)
|
37 |
text = replace_multiple_spaces(text)
|