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

This commit is contained in:
Justus Kuhlmann 2026-03-24 18:49:04 +01:00
commit b8121811f9
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