From f3538955c809d72f5530fac9061da5729c371333 Mon Sep 17 00:00:00 2001 From: Roman Mogilatov Date: Wed, 25 Nov 2015 15:02:20 +0200 Subject: [PATCH] Update injections module API docs --- dependency_injector/injections.py | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/dependency_injector/injections.py b/dependency_injector/injections.py index 553a2a8b..8fa440cd 100644 --- a/dependency_injector/injections.py +++ b/dependency_injector/injections.py @@ -138,6 +138,12 @@ def inject(*args, **kwargs): def __init__(self, arg1, arg2): pass + :param args: Tuple of context positional arguments. + :type args: tuple[object] + + :param kwargs: Dictionary of context keyword arguments. + :type kwargs: dict[str, object] + :return: Class / callable decorator :rtype: (callable) -> (type | callable) """