X-Git-Url: https://wannabe.guru.org/gitweb/?a=blobdiff_plain;f=profanity_filter.py;h=95540fa7b36f0bd8fcf813196e2f9f2390569fce;hb=36fea7f15ed17150691b5b3ead75450e575229ef;hp=4723a2db0679e5f866f14bbb723c66391fa06ae6;hpb=6887fe6aaa9d844fe421d2ccdf87f6d03249da9a;p=python_utils.git diff --git a/profanity_filter.py b/profanity_filter.py index 4723a2d..95540fa 100755 --- a/profanity_filter.py +++ b/profanity_filter.py @@ -494,7 +494,9 @@ class ProfanityFilter(object): result = result.replace('3', 'e') for x in string.punctuation: result = result.replace(x, "") - chunks = [self.stemmer.stem(word) for word in nltk.word_tokenize(result)] + chunks = [ + self.stemmer.stem(word) for word in nltk.word_tokenize(result) + ] return ' '.join(chunks) def tokenize(self, text: str):