Skip to content

Commit dd1f5e1

Browse files
author
Guillaume Badi
authored
Merge pull request #3 from Malimediagroup/master
Fix mixed indent type
2 parents 2058417 + 50eb520 commit dd1f5e1

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

mailjet/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)