From: Hugo Date: Mon, 14 May 2018 13:14:20 +0000 (+0300) Subject: Unnecessary list literal - rewrite as a set literal X-Git-Url: https://vcs.fsf.org/?a=commitdiff_plain;h=300888b002e82dbeb9aa43503b4b50c8f05bcf97;p=tweepy.git Unnecessary list literal - rewrite as a set literal --- 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