From d1322f259a7010bbe68c2aac405bc812124b72a0 Mon Sep 17 00:00:00 2001 From: 7000pctAUTO Date: Mon, 2 Feb 2026 21:48:03 +0000 Subject: [PATCH] fix: resolve CI linting failures --- depaudit/output/table_formatter.py | 3 --- 1 file changed, 3 deletions(-) diff --git a/depaudit/output/table_formatter.py b/depaudit/output/table_formatter.py index a52f018..b40572c 100644 --- a/depaudit/output/table_formatter.py +++ b/depaudit/output/table_formatter.py @@ -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()