From 7432624e2e06c620b9aba50dd29edfd4bb0b993e Mon Sep 17 00:00:00 2001 From: Pieter Ennes Date: Wed, 10 Jan 2018 14:37:45 +0000 Subject: [PATCH] Fix typo in example. --- docs/code_snippet.rst | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/code_snippet.rst b/docs/code_snippet.rst index aed7d7c..324fe03 100644 --- a/docs/code_snippet.rst +++ b/docs/code_snippet.rst @@ -75,5 +75,5 @@ will wait for 15 minutes each time it hits the rate limit. time.sleep(15 * 60) for follower in limit_handled(tweepy.Cursor(api.followers).items()): - if follower.friends_count < 300: + if follower.friends_count > 300: print follower.screen_name -- 2.25.1