summaryrefslogtreecommitdiffstats
path: root/twitter/dispatcher.py
diff options
context:
space:
mode:
Diffstat (limited to 'twitter/dispatcher.py')
-rw-r--r--twitter/dispatcher.py2
1 files changed, 0 insertions, 2 deletions
diff --git a/twitter/dispatcher.py b/twitter/dispatcher.py
index 56fb9f7..2bba1c3 100644
--- a/twitter/dispatcher.py
+++ b/twitter/dispatcher.py
@@ -51,8 +51,6 @@ class Dispatcher:
def add_user(self, user_id, user_name, followers_count):
self.users[user_id] = user_name
- if int(followers_count) >= 5000:
- return
if (not pa.isfile(pa.join("data", "users", user_id + ".txt"))
and user_id not in self.current_followers):
self.followers_queue[user_id] = (user_name, followers_count)