fix: resolve CI/CD issues - remove unused imports and fix type mismatches
This commit is contained in:
@@ -51,11 +51,11 @@ class BaseParser(ABC):
|
|||||||
pass
|
pass
|
||||||
|
|
||||||
@abstractmethod
|
@abstractmethod
|
||||||
def extract_imports(self, tree, file_path: Path) -> list[str]:
|
def extract_imports(self, content: str) -> list[str]:
|
||||||
pass
|
pass
|
||||||
|
|
||||||
@abstractmethod
|
@abstractmethod
|
||||||
def extract_calls(self, tree, file_path: Path) -> list[str]:
|
def extract_calls(self, content: str) -> list[str]:
|
||||||
pass
|
pass
|
||||||
|
|
||||||
@classmethod
|
@classmethod
|
||||||
|
|||||||
Reference in New Issue
Block a user