From 2c7d1897eb433acee8ab8681105a05862b802dcd Mon Sep 17 00:00:00 2001 From: "Paul Gauthier (aider)" Date: Wed, 18 Dec 2024 12:43:08 -0800 Subject: [PATCH] style: Fix linting issues in problem_stats.py --- benchmark/problem_stats.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/benchmark/problem_stats.py b/benchmark/problem_stats.py index 8a43309a4..c4c261ecb 100755 --- a/benchmark/problem_stats.py +++ b/benchmark/problem_stats.py @@ -177,7 +177,7 @@ def analyze_exercise_solutions(dirs=None, topn=None): counts = [0] * (total_models + 1) for ex, models in exercise_solutions.items(): counts[len(models)] += 1 - + for i, count in enumerate(counts): print(f"{i:>6d} {count:>9d}")