From 6875e1517d4d81b9f5bfb5e7b5d4e076cd3a7bea Mon Sep 17 00:00:00 2001 From: Harmon Date: Thu, 11 Feb 2021 22:06:29 -0600 Subject: [PATCH] Remove id endpoint parameter for API.friends --- tweepy/api.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/tweepy/api.py b/tweepy/api.py index 5043fb1..126f160 100644 --- a/tweepy/api.py +++ b/tweepy/api.py @@ -613,8 +613,8 @@ class API: """ return self.request( 'GET', 'friends/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