develop #41

Merged
jkuhl merged 210 commits from develop into master 2026-05-07 16:01:02 +02:00
Showing only changes of commit b8121811f9 - Show all commits

HOTFIX: hand over path as str
Some checks are pending
Mypy / mypy (push) Waiting to run
Pytest / pytest (3.12) (push) Waiting to run
Pytest / pytest (3.13) (push) Waiting to run
Pytest / pytest (3.14) (push) Waiting to run
Ruff / ruff (push) Waiting to run

Justus Kuhlmann 2026-03-24 18:49:04 +01:00
Signed by: jkuhl
GPG key ID: 00ED992DD79B85A6

View file

@ -238,7 +238,7 @@ def preload(path: Path, file: Path) -> dict[str, Any]:
The data read from the file.
"""
get(path, file)
filedict: dict[str, Any] = pj.load_json_dict(path / file)
filedict: dict[str, Any] = pj.load_json_dict(str(path / file))
print("> read file")
return filedict