Fix a docstring typo

This commit is contained in:
Jakub Stasiak 2019-10-16 22:57:38 +02:00
parent d50e581734
commit 63e6015d02
1 changed files with 1 additions and 1 deletions

View File

@ -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}