mirror of
https://github.com/ansible-collections/community.general.git
synced 2025-07-26 22:51:23 -07:00
Let called functions use method
keyword (#43086)
Hopefully we can live without `method_` instead
This commit is contained in:
parent
64f5f9c2f9
commit
8c620a17d4
2 changed files with 2 additions and 3 deletions
|
@ -72,9 +72,9 @@ def exec_command(module, command):
|
|||
return 0, out, ''
|
||||
|
||||
|
||||
def request_builder(method, *args, **kwargs):
|
||||
def request_builder(method_, *args, **kwargs):
|
||||
reqid = str(uuid.uuid4())
|
||||
req = {'jsonrpc': '2.0', 'method': method, 'id': reqid}
|
||||
req = {'jsonrpc': '2.0', 'method': method_, 'id': reqid}
|
||||
|
||||
params = args or kwargs or None
|
||||
if params:
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue