Skip to content

Commit

Permalink
fix(reconstruction): space has been included as punctution
Browse files Browse the repository at this point in the history
  • Loading branch information
kaldan007 committed Dec 15, 2021
1 parent 9e32757 commit 7ffbcbc
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion pedurma/reconstruction.py
Original file line number Diff line number Diff line change
Expand Up @@ -174,7 +174,7 @@ def is_punct(char):
Returns:
flag: true if char is punctuation false if not
"""
if char in ["་", "།", "༔", ":", "། །", "༄", "༅", "\u0F7F"]:
if char in ["་", "།", "༔", ":", "། །", "༄", "༅", "\u0F7F", " "]:
return True
else:
return False
Expand Down

0 comments on commit 7ffbcbc

Please sign in to comment.