mirror of
https://github.com/ansible-collections/community.general.git
synced 2024-09-14 20:13:21 +02:00
Remove extarneous json.loads() which was moved to the utility. (#41731)
This commit is contained in:
parent
8841fdd481
commit
4d5d0b63f3
1 changed files with 1 additions and 1 deletions
|
@ -111,7 +111,7 @@ def delete_template(meraki, org_id, name, data):
|
|||
path = meraki.construct_path('delete', org_id=org_id)
|
||||
path = path + '/' + template_id
|
||||
response = meraki.request(path, 'DELETE')
|
||||
return json.loads(response)
|
||||
return response
|
||||
|
||||
|
||||
def bind(meraki, org_name, net_name, name, data):
|
||||
|
|
Loading…
Reference in a new issue