Default oauth_1 kwarg to False for Client._get_authenticating_user_id
authorHarmon <Harmon758@gmail.com>
Thu, 24 Mar 2022 06:06:35 +0000 (01:06 -0500)
committerHarmon <Harmon758@gmail.com>
Thu, 24 Mar 2022 06:06:35 +0000 (01:06 -0500)
tweepy/client.py

index 5f10e9de66999c8572d799d2ccd58ea82338eecb..8937fe9323939774ad8c9cb9e6fb08544e974f4c 100644 (file)
@@ -224,7 +224,7 @@ class Client(BaseClient):
         User agent used when making requests to the API
     """
 
-    def _get_authenticating_user_id(self, *, oauth_1):
+    def _get_authenticating_user_id(self, *, oauth_1=False):
         if oauth_1:
             if self.access_token is None:
                 raise TypeError(