From: Harmon Date: Fri, 12 Feb 2021 23:24:24 +0000 (-0600) Subject: Remove id endpoint parameter for API.followers_ids X-Git-Url: https://vcs.fsf.org/?a=commitdiff_plain;h=5cddd12d26d22f691039de3cb792da3e9e25e0e8;p=tweepy.git Remove id endpoint parameter for API.followers_ids --- diff --git a/tweepy/api.py b/tweepy/api.py index dd389a5..1430485 100644 --- a/tweepy/api.py +++ b/tweepy/api.py @@ -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 )