From 232fa2982fd7a92c9d8458ca63482ee8d55d06f7 Mon Sep 17 00:00:00 2001 From: Harmon Date: Mon, 15 Feb 2021 01:45:27 -0600 Subject: [PATCH] Add endpoint parameters for API.list_members count, include_entities, skip_status --- tweepy/api.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/tweepy/api.py b/tweepy/api.py index 5e85fb0..bb5a179 100644 --- a/tweepy/api.py +++ b/tweepy/api.py @@ -1048,7 +1048,8 @@ class API: """ return self.request( 'GET', 'lists/members', *args, endpoint_parameters=( - 'owner_screen_name', 'slug', 'list_id', 'owner_id', 'cursor' + 'owner_screen_name', 'slug', 'list_id', 'owner_id', 'count', + 'cursor', 'include_entities', 'skip_status' ), **kwargs ) -- 2.25.1