This commit is contained in:
J-Doiron
2025-08-20 10:37:14 -07:00
parent 43bd5a674f
commit 4beb0bfc8c

View File

@@ -31,8 +31,8 @@ def get_resolution() -> tuple[int, int]:
) from exc
if not bench_file.is_file():
raise FileNotFoundError(f"Benchmark file not found.")
raise FileNotFoundError("Benchmark file not found.")
with bench_file.open(encoding="utf-8") as f:
data = json.load(f)