Fix string to list
This commit is contained in:
parent
fddef13b54
commit
a94516bd20
1 changed files with 2 additions and 1 deletions
|
@ -73,7 +73,8 @@ while True:
|
|||
|
||||
words = text.split(" ")
|
||||
for word in words:
|
||||
wordlist += word
|
||||
if word[0] = "@":
|
||||
wordlist += [word]
|
||||
|
||||
wordlist = list(set(wordlist))
|
||||
try:
|
||||
|
|
Loading…
Reference in a new issue