Fix wrong parameter description in docstring
There is duplicated 'param' to same parameter, that should be 'type'. Change-Id: I446a524ea27553e63c800f80edc5074df6e9c53b
This commit is contained in:
parent
19053b6e65
commit
3738bff165
@ -320,7 +320,7 @@ class RPCClient(object):
|
||||
:param method: the method name
|
||||
:type method: str
|
||||
:param kwargs: a dict of method arguments
|
||||
:param kwargs: dict
|
||||
:type kwargs: dict
|
||||
"""
|
||||
self.prepare().cast(ctxt, method, **kwargs)
|
||||
|
||||
@ -355,7 +355,7 @@ class RPCClient(object):
|
||||
:param method: the method name
|
||||
:type method: str
|
||||
:param kwargs: a dict of method arguments
|
||||
:param kwargs: dict
|
||||
:type kwargs: dict
|
||||
:raises: MessagingTimeout, RemoteError
|
||||
"""
|
||||
return self.prepare().call(ctxt, method, **kwargs)
|
||||
|
Loading…
x
Reference in New Issue
Block a user