feat: just did the stuff
Python Lint CI / ruff (push) Successful in 50s
Python Lint CI / ruff-format-check (push) Successful in 49s
Python Test CI / coverage (push) Failing after 50s
Python Lint CI / ty (push) Successful in 50s

This commit is contained in:
2026-06-15 13:17:11 +02:00
parent dcfe91453d
commit a18c066f97
12 changed files with 445 additions and 277 deletions
+6
View File
@@ -0,0 +1,6 @@
from .word_list import WordList
LANGS: dict[str, WordList] = {
"english": WordList("english", "english", "words_alpha.txt"),
"french": WordList("french", "french", "francais.txt"),
}