We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 976433a commit 1f82acaCopy full SHA for 1f82aca
ellar/testing/module.py
@@ -270,7 +270,8 @@ def _analyze_and_resolve_controller_dependencies(
270
# For each dependency, find the providing module
271
for dep_type in dependencies:
272
# Handle tagged dependencies (InjectByTag)
273
- if isinstance(dep_type, t.NewType):
+ # NewType creates callables with __supertype__ attribute
274
+ if hasattr(dep_type, "__supertype__"):
275
resolved_type = app_analyzer.get_type_from_tag(dep_type)
276
if not resolved_type:
277
continue
0 commit comments