mirror of
https://github.com/Aider-AI/aider.git
synced 2025-05-29 00:35:00 +00:00
style: Fix string formatting in problem stats
This commit is contained in:
parent
366155b828
commit
8c1b147705
1 changed files with 1 additions and 1 deletions
|
@ -127,7 +127,7 @@ def analyze_exercise_solutions(dirs=None, topn=None):
|
||||||
|
|
||||||
for testcase in all_exercises:
|
for testcase in all_exercises:
|
||||||
# Language is already in the testcase string
|
# Language is already in the testcase string
|
||||||
lang = testcase.split('/')[0] # First part is the language
|
lang = testcase.split("/")[0] # First part is the language
|
||||||
models = exercise_solutions[testcase]
|
models = exercise_solutions[testcase]
|
||||||
num_solved = len(models)
|
num_solved = len(models)
|
||||||
percent = (num_solved / total_models) * 100
|
percent = (num_solved / total_models) * 100
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue