fix: resolve CI/CD issues - remove unused imports and fix type mismatches
Some checks failed
CI / test (push) Has been cancelled
CI / build (push) Has been cancelled

This commit is contained in:
2026-02-02 02:56:13 +00:00
parent 3e350917d9
commit a91b3dafa0

View File

@@ -123,7 +123,7 @@ class DependencyAnalyzer:
return call_graph
def get_architecture_layers(self) -> dict[str, list[str]]:
layers = {"presentation": [], "business": [], "data": [], "other": []}
layers: dict[str, list[str]] = {"presentation": [], "business": [], "data": [], "other": []}
layer_keywords = {
"presentation": ["ui", "view", "controller", "handler", "route", "api"],