Remove extarneous json.loads() which was moved to the utility. (#41731)

This commit is contained in:
Kevin Breit 2018-06-22 02:45:40 -05:00 committed by Dag Wieers
parent 8841fdd481
commit 4d5d0b63f3

View file

@ -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):