fix: remove unnecessary f-string prefixes and unused import (#2352)

- Remove f-string prefix on 7 strings with no placeholders (F541)
  in analyze.py, aggregate_benchmark.py, run_loop.py, generate_review.py
- Remove unused `os` import in quick_validate.py (F401)

Found by ruff via HUMMBL Arbiter (https://hummbl.io/audit).
This commit is contained in:
Reuben Bowlby
2026-04-20 21:53:18 -04:00
committed by GitHub
parent ef04174194
commit 085c13edc7
5 changed files with 8 additions and 9 deletions
@@ -389,7 +389,7 @@ def main():
configs = [k for k in run_summary if k != "delta"]
delta = run_summary.get("delta", {})
print(f"\nSummary:")
print("\nSummary:")
for config in configs:
pr = run_summary[config]["pass_rate"]["mean"]
label = config.replace("_", " ").title()
@@ -4,7 +4,6 @@ Quick validation script for skills - minimal version
"""
import sys
import os
import re
import yaml
from pathlib import Path
@@ -188,7 +188,7 @@ def run_loop(
# Improve the description based on train results
if verbose:
print(f"\nImproving description...", file=sys.stderr)
print("\nImproving description...", file=sys.stderr)
t0 = time.time()
# Strip test scores from history so improvement model can't see them