Indicate parameters as optional in documentation for Client.get_user
authorHarmon <Harmon758@gmail.com>
Sat, 26 Feb 2022 18:47:15 +0000 (12:47 -0600)
committerHarmon <Harmon758@gmail.com>
Sat, 26 Feb 2022 18:47:15 +0000 (12:47 -0600)
Properly indicate id and username parameters as optional in documentation for Client.get_user

tweepy/client.py

index 0a6c8c579757505baeeff763ed19fcb8c516500d..64309c4cab66ec2f5eb1d4572459613a37721dca 100644 (file)
@@ -1769,17 +1769,17 @@ class Client(BaseClient):
     # User lookup
 
     def get_user(self, *, id=None, username=None, user_auth=False, **params):
-        """get_user(*, id, username, expansions, tweet_fields, user_fields, \
-                    user_auth=False)
+        """get_user(*, id=None, username=None, expansions, tweet_fields, \
+                    user_fields, user_auth=False)
 
         Returns a variety of information about a single user specified by the
         requested ID or username.
 
         Parameters
         ----------
-        id : int | str
+        id : int | str | None
             The ID of the user to lookup.
-        username : str
+        username : str | None
             The Twitter username (handle) of the user.
         expansions : list[str] | str
             :ref:`expansions_parameter`