fix: resolve CI linting failures
Some checks failed
CI / test (push) Failing after 13s

This commit is contained in:
2026-02-02 21:48:03 +00:00
parent c3cb7cc142
commit d1322f259a

View File

@@ -58,7 +58,6 @@ class TableFormatter(Formatter):
lines.append("SEVERITY SUMMARY:")
for severity, count in summary["severity_breakdown"].items():
if count > 0:
color = SEVERITY_COLORS.get(severity, "grey")
lines.append(f" {severity.upper()}: {count}")
lines.append("")
@@ -67,8 +66,6 @@ class TableFormatter(Formatter):
return "\n".join(lines)
def _render_table(self, table: Table) -> str:
from io import StringIO
output = StringIO()
self.console.begin_capture()
self.console.print(table)
captured = self.console.end_capture()