From 945844712f6ce8f64ecac2c8ab1fa662fa39be52 Mon Sep 17 00:00:00 2001 From: Mylloon Date: Thu, 11 Aug 2022 12:38:29 +0200 Subject: [PATCH] remove threaded --- main.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/main.py b/main.py index 0b57a18..afb5cee 100644 --- a/main.py +++ b/main.py @@ -379,7 +379,7 @@ def start(): stream.add_rules([StreamRule(rule) for rule in rules]) # Apply the filter - stream.filter(threaded=True, tweet_fields=["author_id", "conversation_id"]) + stream.filter(tweet_fields=["author_id", "conversation_id"]) if __name__ == "__main__":