From 63e6015d02fbfff3c5f8fe574dc740d0ad205f0b Mon Sep 17 00:00:00 2001 From: Jakub Stasiak Date: Wed, 16 Oct 2019 22:57:38 +0200 Subject: [PATCH] Fix a docstring typo --- injector/__init__.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/injector/__init__.py b/injector/__init__.py index 67f3b10..a1ee243 100644 --- a/injector/__init__.py +++ b/injector/__init__.py @@ -980,7 +980,7 @@ def get_bindings(callable: Callable) -> Dict[str, type]: >>> # The simple case of no @inject but injection requested with Inject[...] >>> def function4(a: Inject[int], b: str) -> None: - ... pass + ... pass ... >>> get_bindings(function4) {'a': int}