From: Harmon Date: Fri, 12 Feb 2021 23:37:33 +0000 (-0600) Subject: Remove id endpoint parameter for API.followers X-Git-Url: https://vcs.fsf.org/?a=commitdiff_plain;h=a3fb9594b4bcc884eb29feb11028509b73328f2a;p=tweepy.git Remove id endpoint parameter for API.followers --- diff --git a/tweepy/api.py b/tweepy/api.py index 17099f7..5a22c75 100644 --- a/tweepy/api.py +++ b/tweepy/api.py @@ -658,8 +658,8 @@ class API: """ return self.request( 'GET', 'followers/list', *args, endpoint_parameters=( - 'id', 'user_id', 'screen_name', 'cursor', 'count', - 'skip_status', 'include_user_entities' + 'user_id', 'screen_name', 'cursor', 'count', 'skip_status', + 'include_user_entities' ), **kwargs )