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
Hello,
there is a case for this address '268 S Beverly Dr. #9876'
This address is parsed and suite_num is None.
I've found the reason
Take a look: elif len(word_lw) > 0 and word_lw[0] == '#' and res['suite_num'] is not None
should be without "not" statement elif len(word_lw) > 0 and word_lw[0] == '#' and res['suite_num'] is None
What do you think?
The text was updated successfully, but these errors were encountered:
Hello,
there is a case for this address '268 S Beverly Dr. #9876'
This address is parsed and suite_num is None.
I've found the reason
Take a look:
elif len(word_lw) > 0 and word_lw[0] == '#' and res['suite_num'] is not None
should be without "not" statement
elif len(word_lw) > 0 and word_lw[0] == '#' and res['suite_num'] is None
What do you think?
The text was updated successfully, but these errors were encountered: