Skip to content

Commit fbaecaa

Browse files
committed
Remove prints
1 parent 22aa4c3 commit fbaecaa

File tree

1 file changed

+0
-2
lines changed

1 file changed

+0
-2
lines changed

pythainlp/util/normalize.py

-2
Original file line numberDiff line numberDiff line change
@@ -268,8 +268,6 @@ def expand_maiyamok(sent: Union[str, List[str]]) -> List[str]:
268268
yamok_count = 0
269269
len_sent = len(sent)
270270
for i in range(len_sent - 1, -1, -1): # do it backward
271-
print(i, sent[i])
272-
print(i, output_toks)
273271
if yamok_count == 0 or (i + 1 >= len_sent):
274272
if sent[i] == yamok:
275273
yamok_count = yamok_count + 1

0 commit comments

Comments
 (0)