From: SimkoCarlos <65060977+SimkoCarlos@users.noreply.github.com> Date: Wed, 23 Feb 2022 01:32:59 +0000 (-0300) Subject: Fix missing comma in streaming.py X-Git-Url: https://vcs.fsf.org/?a=commitdiff_plain;h=4145814a6b386031f625a3694f3ea2291c1c9dd0;p=tweepy.git Fix missing comma in streaming.py --- 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,