Skip to content

Commit

Permalink
remove print statement from clean text remove punctuation statement
Browse files Browse the repository at this point in the history
  • Loading branch information
sagorbrur authored Jan 13, 2024
1 parent fbc26a7 commit 133265f
Showing 1 changed file with 0 additions and 1 deletion.
1 change: 0 additions & 1 deletion bnlp/cleantext/clean.py
Original file line number Diff line number Diff line change
Expand Up @@ -58,7 +58,6 @@ def remove_number_or_digit(text, replace_with=""):

def remove_punctuations(text, replace_with=""):
for punc in corpus.punctuations:
print(punc)
text = text.replace(punc, replace_with)

return text
Expand Down

0 comments on commit 133265f

Please sign in to comment.