From: brett-schneider Date: Sun, 11 Oct 2020 17:30:56 +0000 (+0200) Subject: add count to list_members() X-Git-Url: https://vcs.fsf.org/?a=commitdiff_plain;h=09ea723228b8d76f91c4936f099b0b493ee036bd;p=tweepy.git add count to list_members() --- diff --git a/tweepy/api.py b/tweepy/api.py index 262fbb7..3f25235 100644 --- a/tweepy/api.py +++ b/tweepy/api.py @@ -1173,14 +1173,14 @@ class API(object): def list_members(self): """ :reference: https://developer.twitter.com/en/docs/accounts-and-users/create-manage-lists/api-reference/get-lists-members :allowed_param: 'owner_screen_name', 'slug', 'list_id', 'owner_id', - 'cursor' + 'cursor', 'count' """ return bind_api( api=self, path='/lists/members.json', payload_type='user', payload_list=True, allowed_param=['owner_screen_name', 'slug', 'list_id', 'owner_id', - 'cursor'] + 'cursor', 'count'] ) @property