Apply ruff format after merging phase2-secondary-prediction

The merged proc_idx/proc_map plumbing wasn't run through ruff format
before merging; reflow only, no logic changes.
This commit is contained in:
2026-07-15 10:00:36 +02:00
parent a5683517be
commit 05d5dee606
7 changed files with 67 additions and 26 deletions
+6 -2
View File
@@ -217,8 +217,12 @@ def run_parallel_job(
raise SystemExit(1)
total_orphaned = sum(
int(m.group(1)) for _, _, stdout, _ in results for m in _ORPHAN_RE.finditer(stdout)
int(m.group(1))
for _, _, stdout, _ in results
for m in _ORPHAN_RE.finditer(stdout)
)
if total_orphaned:
print(f"\n{total_orphaned} orphaned child track(s) dropped across {len(results)} file(s).")
print(
f"\n{total_orphaned} orphaned child track(s) dropped across {len(results)} file(s)."
)
print(f"\nAll {len(results)} conversion(s) completed.")