Check for repeats

main2
Bob Mottram 2019-11-04 21:11:09 +00:00
parent b703a98b8f
commit 41f7dc4d51
1 changed files with 2 additions and 1 deletions

View File

@ -252,7 +252,8 @@ def removeLongWords(content: str,maxWordLength: int,longWordsList: []) -> str:
if '=\"' in wordStr:
continue
if '@' in wordStr:
continue
if '@@' not in wordStr:
continue
if 'https:' in wordStr:
continue
elif 'http:' in wordStr: