Skip to content

Commit 5d29166

Browse files
committed
Remove unnecessary runner_group
1 parent e0a2e9e commit 5d29166

File tree

1 file changed

+1
-6
lines changed

1 file changed

+1
-6
lines changed

bench_runner/plot.py

Lines changed: 1 addition & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -463,15 +463,10 @@ def get_comparison_value(ref, r):
463463
r.cpython_hash
464464
] = r
465465

466-
runner_groups = defaultdict(list)
467-
runners = mrunners.get_runners()
468-
for runner in runners:
469-
runner_groups[runner.hostname].append(runner)
470-
471466
for subplot, ax in zip(subplots, axs):
472467
ax.set_title(f"Effect of {subplot['name']}")
473468

474-
for runner in runners:
469+
for runner in mrunners.get_runners():
475470
head_results = commits.get(runner.nickname, {}).get(
476471
tuple(subplot["head_flags"]), {}
477472
)

0 commit comments

Comments
 (0)