diff --git a/cli/src/fuzzforge_cli/commands/findings.py b/cli/src/fuzzforge_cli/commands/findings.py index ea5a536..7eada20 100644 --- a/cli/src/fuzzforge_cli/commands/findings.py +++ b/cli/src/fuzzforge_cli/commands/findings.py @@ -1115,18 +1115,18 @@ def export_to_html(findings_data: Dict[str, Any], output_path: Path, run_id: str location_str += f":{line_start}" severity_badge = { - "critical": 'CRITICAL', - "high": 'HIGH', - "medium": 'MEDIUM', - "low": 'LOW', - "info": 'INFO' - }.get(severity, 'INFO') + "critical": 'CRITICAL', + "high": 'HIGH', + "medium": 'MEDIUM', + "low": 'LOW', + "info": 'INFO' + }.get(severity, 'INFO') confidence_badge = { - "high": 'High', - "medium": 'Medium', - "low": 'Low' - }.get(confidence, 'Medium') + "high": 'High', + "medium": 'Medium', + "low": 'Low' + }.get(confidence, 'Medium') type_icon = { "llm": "🤖", @@ -1138,33 +1138,31 @@ def export_to_html(findings_data: Dict[str, Any], output_path: Path, run_id: str # Build details HTML details_html = f"""