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.
Is there any way to add a method to container?
from dependency_injector import containers class Container(containers.DeclarativeContainer): def check(self): print('check') c = Container() c.check()
this code raises AttributeError: 'DynamicContainer' object has no attribute 'check'
AttributeError: 'DynamicContainer' object has no attribute 'check'