From 0d1958e1f7419c557bd7dff36e5c87ce9b6264ca Mon Sep 17 00:00:00 2001 From: 7000pctAUTO Date: Tue, 3 Feb 2026 10:39:06 +0000 Subject: [PATCH] fix: resolve CI import and type mismatch issues --- src/core/__init__.py | 8 +++----- 1 file changed, 3 insertions(+), 5 deletions(-) diff --git a/src/core/__init__.py b/src/core/__init__.py index 19655d4..fbaa66c 100644 --- a/src/core/__init__.py +++ b/src/core/__init__.py @@ -1,6 +1,4 @@ -"""Core module for AI Code Audit CLI.""" +from .models import ScanResult, Issue, IssueCategory, SeverityLevel +from .scanner import CodeScanner -from .scanner import Scanner -from .config import AuditConfig - -__all__ = ["Scanner", "AuditConfig"] +__all__ = ["ScanResult", "Issue", "IssueCategory", "SeverityLevel", "CodeScanner"]