Fix API documentation to refer to Parser instance for parser parameter
authorHarmon <Harmon758@gmail.com>
Tue, 6 Apr 2021 17:35:11 +0000 (12:35 -0500)
committerHarmon <Harmon758@gmail.com>
Tue, 6 Apr 2021 17:35:11 +0000 (12:35 -0500)
tweepy/api.py

index b2d5f1c8f055955fd649dba5fbc2d3ebe296a386..203145d23a6b372a8c3ea4d5847bba753fd03b11 100644 (file)
@@ -61,13 +61,14 @@ class API:
     :param retry_errors: Which HTTP status codes to retry
     :param timeout: The maximum amount of time to wait for a response from
                     Twitter
-    :param parser: The object to use for parsing the response from Twitter
+    :param parser: The Parser instance to use for parsing the response from
+                   Twitter
     :param wait_on_rate_limit: Whether or not to automatically wait for rate
                                limits to replenish
     :param proxy: The full url to an HTTPS proxy to use for connecting to
                   Twitter
     
-    :raise TypeError: If the given parser is not a ModelParser instance
+    :raise TypeError: If the given parser is not a Parser instance
 
     :reference: https://developer.twitter.com/en/docs/api-reference-index
     """