From 9382fe22a77076cd0a7260bd7a90e90721a9ea6c Mon Sep 17 00:00:00 2001 From: Harmon Date: Sat, 26 Dec 2020 18:25:49 -0600 Subject: [PATCH] Fix formatting inconsistency in Stream._run --- tweepy/streaming.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tweepy/streaming.py b/tweepy/streaming.py index 865a55e..3010aaa 100644 --- a/tweepy/streaming.py +++ b/tweepy/streaming.py @@ -270,7 +270,7 @@ class Stream(object): stream=True, auth=auth, verify=self.verify, - proxies = self.proxies) + proxies=self.proxies) if resp.status_code != 200: if self.listener.on_error(resp.status_code) is False: break -- 2.25.1