From: Harmon Date: Fri, 12 Feb 2021 04:06:29 +0000 (-0600) Subject: Remove id endpoint parameter for API.friends X-Git-Url: https://vcs.fsf.org/?a=commitdiff_plain;h=6875e1517d4d81b9f5bfb5e7b5d4e076cd3a7bea;p=tweepy.git Remove id endpoint parameter for API.friends --- 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 )