From def2d4bac968e88d298cdcc0f7b9f1b368a9ecd5 Mon Sep 17 00:00:00 2001 From: "Paul Gauthier (aider)" Date: Thu, 19 Dec 2024 15:50:14 -0800 Subject: [PATCH] style: Fix string formatting in problem stats --- 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 c09c96745..31f4d3e72 100755 --- a/benchmark/problem_stats.py +++ b/benchmark/problem_stats.py @@ -187,7 +187,7 @@ def analyze_exercise_solutions(dirs=None, topn=None, copy_hard_set=False): unsolved = [ex for ex, models in exercise_solutions.items() if not models] for ex in sorted(unsolved): # Split into language and exercise parts - lang, exercise = ex.split('/') + lang, exercise = ex.split("/") # Reconstruct path in desired format formatted_path = f"{lang}/exercises/practice/{exercise}" print(f" {formatted_path}")