Didier commited on
Commit
d0e0fd8
·
verified ·
1 Parent(s): f5d7472

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +1 -1
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)