Skip to content

Commit

Permalink
Merge pull request #55 from Esukhia/fix-reconstruction
Browse files Browse the repository at this point in the history
fix(reconstruction)
  • Loading branch information
kaldan007 authored Dec 15, 2021
2 parents f46012c + 7ffbcbc commit e00aa8a
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 e00aa8a

Please sign in to comment.