From 3e350917d92dfd18fdea34574a193c62a6addcb8 Mon Sep 17 00:00:00 2001 From: 7000pctAUTO Date: Mon, 2 Feb 2026 02:56:13 +0000 Subject: [PATCH] fix: resolve CI/CD issues - remove unused imports and fix type mismatches --- src/parsers/base.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/parsers/base.py b/src/parsers/base.py index ac6a7c8..c1847e8 100644 --- a/src/parsers/base.py +++ b/src/parsers/base.py @@ -51,11 +51,11 @@ class BaseParser(ABC): pass @abstractmethod - def extract_imports(self, tree, file_path: Path) -> list[str]: + def extract_imports(self, content: str) -> list[str]: pass @abstractmethod - def extract_calls(self, tree, file_path: Path) -> list[str]: + def extract_calls(self, content: str) -> list[str]: pass @classmethod