Skip to content

Commit 3215a21

Browse files
docstring not valid anymore (#417)
1 parent e28064e commit 3215a21

File tree

1 file changed

+0
-4
lines changed

1 file changed

+0
-4
lines changed

ac_dc/filtering.py

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -304,10 +304,6 @@ def remove_words_with_incorrect_substrings(
304304

305305
@staticmethod
306306
def should_keep_long_word(word, strip_characters, length_word_max_cutoff):
307-
"""If the word is too long but it contains only one
308-
special character, it might be a concatenation of one word,
309-
a punctuation, and another word, with no space between them.
310-
In this case, we give the word a pass."""
311307
if len(word) <= length_word_max_cutoff:
312308
return True
313309
word = ModifyingDocuments.strip(word, strip_characters)

0 commit comments

Comments
 (0)