Improve formatting in APIMethod.execute
authorHarmon <Harmon758@gmail.com>
Fri, 29 Jan 2021 02:42:44 +0000 (20:42 -0600)
committerHarmon <Harmon758@gmail.com>
Fri, 29 Jan 2021 02:42:44 +0000 (20:42 -0600)
tweepy/binder.py

index 7a8bc9984e1a6d24d766ca4b6425f06b9f70979c..0f7b8a98da318fe9675853ae6beca438124687b4 100644 (file)
@@ -164,8 +164,7 @@ class APIMethod:
         self.api.last_response = resp
         if resp.status_code and not 200 <= resp.status_code < 300:
             try:
-                error_msg, api_error_code = \
-                    self.parser.parse_error(resp.text)
+                error_msg, api_error_code = self.parser.parse_error(resp.text)
             except Exception:
                 error_msg = f"Twitter error response: status code = {resp.status_code}"
                 api_error_code = None
@@ -177,7 +176,7 @@ class APIMethod:
 
         # Parse the response payload
         self.return_cursors = (self.return_cursors or
-                                'cursor' in self.session.params or 'next' in self.session.params)
+                               'cursor' in self.session.params or 'next' in self.session.params)
         result = self.parser.parse(self, resp.text, return_cursors=self.return_cursors)
 
         # Store result into cache if one is available.