From 4145814a6b386031f625a3694f3ea2291c1c9dd0 Mon Sep 17 00:00:00 2001 From: SimkoCarlos <65060977+SimkoCarlos@users.noreply.github.com> Date: Tue, 22 Feb 2022 22:32:59 -0300 Subject: [PATCH] Fix missing comma in streaming.py --- tweepy/streaming.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tweepy/streaming.py b/tweepy/streaming.py index 6c338cf..fc781aa 100644 --- a/tweepy/streaming.py +++ b/tweepy/streaming.py @@ -258,7 +258,7 @@ class Stream(BaseStream): auth = OAuth1(self.consumer_key, self.consumer_secret, self.access_token, self.access_token_secret) url = f"https://stream.twitter.com/1.1/{endpoint}.json" - super()._connect(method, url, auth=auth **kwargs) + super()._connect(method, url, auth=auth, **kwargs) def filter(self, *, follow=None, track=None, locations=None, filter_level=None, languages=None, stall_warnings=False, -- 2.25.1