diff options
Diffstat (limited to 'profanity_filter.py')
| -rwxr-xr-x | profanity_filter.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/profanity_filter.py b/profanity_filter.py index 4723a2d..22de263 100755 --- a/profanity_filter.py +++ b/profanity_filter.py @@ -499,7 +499,7 @@ class ProfanityFilter(object): def tokenize(self, text: str): for x in nltk.word_tokenize(text): - for y in re.split('\W+', x): + for y in re.split(r'\W+', x): yield y def contains_bad_word(self, text: str) -> bool: |
