We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent e28064e commit 3215a21Copy full SHA for 3215a21
ac_dc/filtering.py
@@ -304,10 +304,6 @@ def remove_words_with_incorrect_substrings(
304
305
@staticmethod
306
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."""
311
if len(word) <= length_word_max_cutoff:
312
return True
313
word = ModifyingDocuments.strip(word, strip_characters)
0 commit comments