feat: custom word list

This commit is contained in:
2026-06-15 15:09:27 +02:00
parent f91384173b
commit 85a1c47c8c
6 changed files with 31 additions and 15 deletions
+2 -2
View File
@@ -1,6 +1,6 @@
from .word_list import WordList
LANGS: dict[str, WordList] = {
"english": WordList("english", "english", "words_alpha.txt"),
"french": WordList("french", "french", "francais.txt"),
"english": WordList("english", "english/words_alpha.txt"),
"french": WordList("french", "french/francais.txt"),
}