-
|
Is there a way to NOT ignore current bindings when class A:
...
class B:
def __init__(self, a: A):
print("a", a)
class X(A):
...
i = Injector(
bindings=[ClassBinding(A, X)],
options=InjectorOptions(auto_bindings=True)
)
b = i.inject(B)Output: |
Beta Was this translation helpful? Give feedback.
Answered by
Aegdesil
Aug 15, 2021
Replies: 1 comment 2 replies
-
|
This is a bug, can you test #19 to check if the issue is fixed ? |
Beta Was this translation helpful? Give feedback.
2 replies
Answer selected by
ocxyz
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
This is a bug, can you test #19 to check if the issue is fixed ?