Skip to content

Commit 0f55400

Browse files
fix: ruff format check_benchmark_regression.pyfix: ruff format check_benchmark_regression.py
1 parent 001c5f0 commit 0f55400

1 file changed

Lines changed: 1 addition & 3 deletions

File tree

scripts/check_benchmark_regression.py

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -75,9 +75,7 @@ def load_baseline_means(baselines_path: str | Path) -> dict[str, float]:
7575
for name, mean in value.items():
7676
name = str(name)
7777
if name in means:
78-
raise BenchmarkDataError(
79-
f"{path} duplicate benchmark name {name!r} across groups"
80-
)
78+
raise BenchmarkDataError(f"{path} duplicate benchmark name {name!r} across groups")
8179
try:
8280
means[name] = float(mean)
8381
except (TypeError, ValueError) as exc:

0 commit comments

Comments
 (0)