Skip to content

Commit 50eb520

Browse files
Fix mixed indent type
"TabError: inconsistent use of tabs and spaces in indentation". Fixed mixed indent type after previous commit f76bcb3.
1 parent 2058417 commit 50eb520

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)