This commit is contained in:
Auric Vente 2024-07-22 21:49:47 -06:00
parent 0721e95a90
commit 2156a04bfa
1 changed files with 1 additions and 1 deletions

View File

@ -227,7 +227,7 @@ class Ants:
return [word for word in words if word.lower() not in ignore]
def fill(words: list[str]) -> list[str]:
words = remove(words, ["of", "de"])
words = remove(words, ["of", "de", "da"])
if len(words) < 2:
words.extend(Utils.random_word(2 - len(words)))