mirror of
https://github.com/ets-labs/python-dependency-injector.git
synced 2025-02-14 18:40:52 +03:00
Add docblocks for the rest of the providers
This commit is contained in:
parent
eaf87b129e
commit
36b9d04e9d
File diff suppressed because it is too large
Load Diff
|
@ -2653,6 +2653,10 @@ cdef class ProvidedInstance(Provider):
|
|||
|
||||
|
||||
cdef class AttributeGetter(Provider):
|
||||
"""Provider that returns the attribute of the injected instance.
|
||||
|
||||
You should not create this provider directly. See :py:class:`ProvidedInstance` instead.
|
||||
"""
|
||||
|
||||
def __init__(self, provider, attribute):
|
||||
self.__provider = provider
|
||||
|
@ -2689,6 +2693,10 @@ cdef class AttributeGetter(Provider):
|
|||
|
||||
|
||||
cdef class ItemGetter(Provider):
|
||||
"""Provider that returns the item of the injected instance.
|
||||
|
||||
You should not create this provider directly. See :py:class:`ProvidedInstance` instead.
|
||||
"""
|
||||
|
||||
def __init__(self, Provider provider, object item):
|
||||
self.__provider = provider
|
||||
|
@ -2725,6 +2733,10 @@ cdef class ItemGetter(Provider):
|
|||
|
||||
|
||||
cdef class MethodCaller(Provider):
|
||||
"""Provider that calls the method of the injected instance.
|
||||
|
||||
You should not create this provider directly. See :py:class:`ProvidedInstance` instead.
|
||||
"""
|
||||
|
||||
def __init__(self, provider, *args, **kwargs):
|
||||
self.__provider = provider
|
||||
|
|
Loading…
Reference in New Issue
Block a user