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 = meraki.construct_path('delete', org_id=org_id)
|
||||||
path = path + '/' + template_id
|
path = path + '/' + template_id
|
||||||
response = meraki.request(path, 'DELETE')
|
response = meraki.request(path, 'DELETE')
|
||||||
return json.loads(response)
|
return response
|
||||||
|
|
||||||
|
|
||||||
def bind(meraki, org_name, net_name, name, data):
|
def bind(meraki, org_name, net_name, name, data):
|
||||||
|
|
Loading…
Reference in a new issue