style: Adjust model column width in problem stats

This commit is contained in:
Paul Gauthier 2024-12-18 13:06:02 -08:00 committed by Paul Gauthier (aider)
parent 04916a6e97
commit 051cabed69

View file

@ -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__":