From 133265f9467418c8099cfc073cad9126cbd718a9 Mon Sep 17 00:00:00 2001 From: Sagor Sarker Date: Sat, 13 Jan 2024 16:12:18 +0600 Subject: [PATCH] remove print statement from clean text remove punctuation statement --- bnlp/cleantext/clean.py | 1 - 1 file changed, 1 deletion(-) diff --git a/bnlp/cleantext/clean.py b/bnlp/cleantext/clean.py index d3951eb..8d01da9 100644 --- a/bnlp/cleantext/clean.py +++ b/bnlp/cleantext/clean.py @@ -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