Skip to content

Commit 85ddd63

Browse files
author
Guillaume Badi
committed
2 parents 0573fa4 + dd1f5e1 commit 85ddd63

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

mailjet_rest/client.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -52,7 +52,7 @@ def create(self, data=None, filters=None, id=None, action_id=None, **kwargs):
5252

5353
def update(self, id, data, filters=None, action_id=None, **kwargs):
5454
if self.headers['Content-type'] == 'application/json':
55-
data = json.dumps(data)
55+
data = json.dumps(data)
5656
return api_call(self._auth, 'put', self._url, resource_id=id, headers=self.headers, data=data, action=self.action, action_id=action_id, filters=filters, **kwargs)
5757

5858
def delete(self, id, **kwargs):

0 commit comments

Comments
 (0)