Skip to content

Commit d8ce6cf

Browse files
Fix ruff format check in check_benchmark_regression.py.
Co-authored-by: Cursor <cursoragent@cursor.com>
1 parent 001c5f0 commit d8ce6cf

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)