Unnecessary list literal - rewrite as a set literal
authorHugo <hugovk@users.noreply.github.com>
Mon, 14 May 2018 13:14:20 +0000 (16:14 +0300)
committerHugo <hugovk@users.noreply.github.com>
Mon, 14 May 2018 13:16:30 +0000 (16:16 +0300)
tests/test_rate_limit.py

index 0ce15153d12ac36d4ebbfc4f9e6c5bba5610bff8..7be9af5aa6fbb3d195ad1dbe67711081f8a2cf56 100644 (file)
@@ -15,7 +15,7 @@ class TweepyRateLimitTests(unittest.TestCase):
         self.api = API(create_auth())
         self.api.retry_count = 2
         self.api.retry_delay = 5
-        self.api.retry_errors = set([401, 404, 503])
+        self.api.retry_errors = {401, 404, 503}
         self.api.wait_on_rate_limit = True
                 
     def testratelimit(self):
@@ -26,7 +26,7 @@ class TweepyRateLimitTests(unittest.TestCase):
                 self.api.user_timeline(user_id=user_id, count=1, include_rts=True)
             except TweepError as e:
                 # continue if we're not autherized to access the user's timeline or she doesn't exist anymore
-                if e.response is not None and e.response.status in set([401, 404]): 
+                if e.response is not None and e.response.status in {401, 404}:
                     continue
                 raise e