mirror of
https://github.com/Aider-AI/aider.git
synced 2025-05-28 16:25:00 +00:00
style: Adjust model column width in problem stats
This commit is contained in:
parent
04916a6e97
commit
051cabed69
1 changed files with 2 additions and 2 deletions
|
@ -212,10 +212,10 @@ def analyze_exercise_solutions(dirs=None, topn=None):
|
|||
model_hard_stats.sort(key=lambda x: x[1], reverse=True)
|
||||
|
||||
print("\nModel performance on hard set:")
|
||||
print(f"{'Model':<30} {'Solved':<8} {'Percent':>7}")
|
||||
print(f"{'Model':<55} {'Solved':<8} {'Percent':>7}")
|
||||
print("-" * 50)
|
||||
for model, solved, pct in model_hard_stats:
|
||||
print(f"{model:<30} {solved:>6d} {pct:>6.1f}%")
|
||||
print(f"{model:<55} {solved:>6d} {pct:>6.1f}%")
|
||||
|
||||
|
||||
if __name__ == "__main__":
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue