From 300888b002e82dbeb9aa43503b4b50c8f05bcf97 Mon Sep 17 00:00:00 2001 From: Hugo Date: Mon, 14 May 2018 16:14:20 +0300 Subject: [PATCH] Unnecessary list literal - rewrite as a set literal --- tests/test_rate_limit.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/tests/test_rate_limit.py b/tests/test_rate_limit.py index 0ce1515..7be9af5 100644 --- a/tests/test_rate_limit.py +++ b/tests/test_rate_limit.py @@ -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 -- 2.25.1