From 9fec3f8e497b23d43f28628f8e5f8bbefc095221 Mon Sep 17 00:00:00 2001 From: Joshua Roesslein Date: Wed, 28 Feb 2018 13:51:34 -0800 Subject: [PATCH] Revert change to skip users with more than 300 followings --- 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 324fe03..aed7d7c 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