From a3fb9594b4bcc884eb29feb11028509b73328f2a Mon Sep 17 00:00:00 2001 From: Harmon Date: Fri, 12 Feb 2021 17:37:33 -0600 Subject: [PATCH] Remove id endpoint parameter for API.followers --- tweepy/api.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) 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 ) -- 2.25.1