Use generic standard type collection type in documentation
authorHarmon <Harmon758@gmail.com>
Fri, 25 Feb 2022 23:53:56 +0000 (17:53 -0600)
committerHarmon <Harmon758@gmail.com>
Fri, 25 Feb 2022 23:53:56 +0000 (17:53 -0600)
tweepy/client.py
tweepy/streaming.py

index 42ab5031b442353fc08e719dc7e80296753e6e92..6a515066dce7c75dbcfe18c7fdedf0a24f424f5b 100644 (file)
@@ -204,7 +204,7 @@ class Client(BaseClient):
         Twitter API Access Token
     access_token_secret : str | None
         Twitter API Access Token Secret
-    return_type : Type[dict | requests.Response | Response]
+    return_type : type[dict | requests.Response | Response]
         Type to return from requests to the API
     wait_on_rate_limit : bool
         Whether to wait when rate limit is reached
index 4d527de580eb1d66b4add3158e9f8ac67a9f6c56..b4563cf8435cfde86a2b340166ca8eaf35dcb587 100644 (file)
@@ -518,7 +518,7 @@ class StreamingClient(BaseClient, BaseStream):
     ----------
     bearer_token : str
         Twitter API Bearer Token
-    return_type : Type[dict | requests.Response | Response]
+    return_type : type[dict | requests.Response | Response]
         Type to return from requests to the API
     wait_on_rate_limit : bool
         Whether to wait when rate limit is reached