Remove id endpoint parameter for API.followers_ids
authorHarmon <Harmon758@gmail.com>
Fri, 12 Feb 2021 23:24:24 +0000 (17:24 -0600)
committerHarmon <Harmon758@gmail.com>
Fri, 12 Feb 2021 23:24:24 +0000 (17:24 -0600)
tweepy/api.py

index dd389a549840f259ba1877f4fcdd3efe154b7d56..143048548aa2d4cc2174c27d533aa2d723bc724d 100644 (file)
@@ -647,7 +647,7 @@ class API:
         """
         return self.request(
             'GET', 'followers/ids', *args, endpoint_parameters=(
-                'id', 'user_id', 'screen_name', 'cursor', 'count'
+                'user_id', 'screen_name', 'cursor', 'count'
             ), **kwargs
         )