Skip to content

Commit 5c72093

Browse files
committed
fix: repair reporter summary formatting
1 parent 137000c commit 5c72093

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

roast/reporter.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -138,8 +138,8 @@ def render_terminal_report(
138138
severity_counts = _issue_counts_by_severity(report.issues)
139139
category_counts = _issue_counts_by_category(report.issues)
140140
hotspots = _hotspot_files(report.issues, limit=3)
141-
category_summary = ", \".join(f"{name}: {count}" for name, count in category_counts.items()) or "No categories to summarize."
142-
hotspot_summary = ", \".join(f"{item['file']} ({item['issue_count']})" for item in hotspots) or "No hotspots found."
141+
category_summary = ", ".join(f"{name}: {count}" for name, count in category_counts.items()) or "No categories to summarize."
142+
hotspot_summary = ", ".join(f"{item['file']} ({item['issue_count']})" for item in hotspots) or "No hotspots found."
143143
console.print(
144144
Panel.fit(
145145
Text.from_markup(

0 commit comments

Comments
 (0)