fix: resolve CI import and type mismatch issues
Some checks failed
CI / test (3.11) (push) Has been cancelled
CI / test (3.12) (push) Has been cancelled
CI / test (3.9) (push) Has been cancelled
CI / build (push) Has been cancelled
CI / release (push) Has been cancelled
CI / test (3.10) (push) Has been cancelled

This commit is contained in:
2026-02-03 10:39:04 +00:00
parent a5f682eb97
commit c77a70b9cf

View File

@@ -10,8 +10,9 @@ from rich.style import Style
from rich.color import Color
from rich.table import Column
from .options import OutputFormat, ScanOptions, SeverityLevel
from ..core.scanner import ScanResult, Issue, IssueCategory
from .options import OutputFormat, ScanOptions
from ..core.models import ScanResult, Issue, IssueCategory, SeverityLevel
from ..reporting.confidence import ConfidenceScorer
class OutputFormatter: