From: Joakim Hellsén <tlovinator@gmail.com>
Date: Sat, 14 May 2022 20:59:02 +0000 (+0200)
Subject: Fix wrong parameter in docstring
X-Git-Url: https://vcs.fsf.org/?a=commitdiff_plain;h=90a9974f4d47a805c841c1f775713fcfc23ce96f;p=tweepy.git

Fix wrong parameter in docstring
---

diff --git a/tweepy/streaming.py b/tweepy/streaming.py
index 57a0330..c6968ed 100644
--- a/tweepy/streaming.py
+++ b/tweepy/streaming.py
@@ -907,7 +907,7 @@ class StreamingClient(BaseClient, BaseStream):
 
         Parameters
         ----------
-        status : Tweet
+        tweet : Tweet
             The Tweet received
         """
         pass
@@ -934,7 +934,7 @@ class StreamingClient(BaseClient, BaseStream):
 
     def on_matching_rules(self, matching_rules):
         """This is called when matching rules are received.
-        
+
         Parameters
         ----------
         matching_rules : list[StreamRule]