From 8c5a4d097aa87ce601ff4b5587bf200b54728404 Mon Sep 17 00:00:00 2001 From: 7000pctAUTO Date: Tue, 3 Feb 2026 07:13:52 +0000 Subject: [PATCH] Fix CI workflow: Add tree-sitter CLI installation and fix linting errors --- vibeguard/cli/commands/report.py | 4 ---- 1 file changed, 4 deletions(-) diff --git a/vibeguard/cli/commands/report.py b/vibeguard/cli/commands/report.py index 4623726..bda1b4d 100644 --- a/vibeguard/cli/commands/report.py +++ b/vibeguard/cli/commands/report.py @@ -1,6 +1,5 @@ """Report command for VibeGuard CLI.""" -from pathlib import Path from typing import Any import click @@ -22,7 +21,6 @@ def report( output_sarif: str | None, ) -> None: """Generate reports from VibeGuard analysis results.""" - config = ctx["config"] console = ctx["console"] generator = ReportGenerator() @@ -33,8 +31,6 @@ def report( return if output_json: - import json - console.print_json(data=issues) elif output_html: generator.generate_html(issues, output_html)