chore: fix odd debug message wording

This commit is contained in:
Matthias
2025-10-15 19:31:10 +02:00
parent bdd60ecbbd
commit 642f24eba5

View File

@@ -51,7 +51,7 @@ def file_dump_json(filename: Path, data: Any, is_zip: bool = False, log: bool =
with filename.open("w") as fp: with filename.open("w") as fp:
dump_json_to_file(fp, data) dump_json_to_file(fp, data)
logger.debug(f'done json to "{filename}"') logger.debug(f'done writing json to "{filename}"')
def json_load(datafile: TextIO) -> Any: def json_load(datafile: TextIO) -> Any: