forked from p15670423/monkey
Common: Fix incorrect docstring in DIContainer
This commit is contained in:
parent
df23cc42f4
commit
a18814a83b
|
@ -187,7 +187,7 @@ class DIContainer:
|
||||||
Deletes key from mapping. Unlike the `del` keyword, this function does not raise a KeyError
|
Deletes key from mapping. Unlike the `del` keyword, this function does not raise a KeyError
|
||||||
if the key does not exist.
|
if the key does not exist.
|
||||||
|
|
||||||
:param MutableMapping: A mapping from which a key will be deleted
|
:param mapping: A mapping from which a key will be deleted
|
||||||
:param key: A key to delete from `mapping`
|
:param key: A key to delete from `mapping`
|
||||||
"""
|
"""
|
||||||
try:
|
try:
|
||||||
|
|
Loading…
Reference in New Issue