Author SHA1 Message Date
klemek 61086e0b9b chore: 1.4.1
Python Lint CI / ty (push) Successful in 1m59s
Python Lint CI / ruff-format-check (push) Successful in 1m59s
Python Lint CI / ruff (push) Successful in 7m18s
2026-06-16 11:09:29 +02:00
klemek ce53920340 fix: use symlink for txt files
Python Lint CI / ruff-format-check (push) Has been cancelled
Python Lint CI / ty (push) Has been cancelled
Python Lint CI / ruff (push) Has been cancelled
2026-06-16 11:08:33 +02:00
6 changed files with 7 additions and 5 deletions
+2 -2
View File
@@ -1,6 +1,6 @@
from cool_domain.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.txt"),
"french": WordList("french", "french.txt"),
}
+1
View File
@@ -0,0 +1 @@
../english/words_alpha.txt
+1
View File
@@ -0,0 +1 @@
../french/francais.txt
+1 -1
View File
@@ -11,7 +11,7 @@ class WordList:
def __init__(self, name: str, path: str) -> None:
self.logger: logging.Logger = logging.getLogger(self.__class__.__name__)
self.__name = name
self.__filepath = pathlib.Path(__file__).parent / ".." / path
self.__filepath = pathlib.Path(__file__).parent / path
self.words: list[str] = []
def open(self) -> None:
+1 -1
View File
@@ -1,6 +1,6 @@
[project]
name = "cool-domain"
version = "1.4.0"
version = "1.4.1"
description = "Add your description here"
readme = "README.md"
requires-python = ">=3.12"
Generated
+1 -1
View File
@@ -4,7 +4,7 @@ requires-python = ">=3.12"
[[package]]
name = "cool-domain"
version = "1.4.0"
version = "1.4.1"
source = { editable = "." }
dependencies = [
{ name = "unidecode" },