projects
/
tweepy.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
0a1e569
)
Fix missing comma in streaming.py
author
SimkoCarlos
<65060977+SimkoCarlos@users.noreply.github.com>
Wed, 23 Feb 2022 01:32:59 +0000
(22:32 -0300)
committer
GitHub
<noreply@github.com>
Wed, 23 Feb 2022 01:32:59 +0000
(22:32 -0300)
tweepy/streaming.py
patch
|
blob
|
blame
|
history
diff --git
a/tweepy/streaming.py
b/tweepy/streaming.py
index 6c338cf41387febe4dde0d5ba186013d621ab465..fc781aa20148dba3c7b306a72af83404ab6061ee 100644
(file)
--- 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,