fix: resolve CI/CD issues - remove unused imports and fix type mismatches
This commit is contained in:
@@ -123,7 +123,7 @@ class DependencyAnalyzer:
|
|||||||
return call_graph
|
return call_graph
|
||||||
|
|
||||||
def get_architecture_layers(self) -> dict[str, list[str]]:
|
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 = {
|
layer_keywords = {
|
||||||
"presentation": ["ui", "view", "controller", "handler", "route", "api"],
|
"presentation": ["ui", "view", "controller", "handler", "route", "api"],
|
||||||
|
|||||||
Reference in New Issue
Block a user