Skip to content

Commit

Permalink
Add endpoint parameters for API.list_members
Browse files Browse the repository at this point in the history
count, include_entities, skip_status
  • Loading branch information
Harmon758 committed Feb 15, 2021
1 parent 593ef1c commit 232fa29
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion tweepy/api.py
Original file line number Diff line number Diff line change
Expand Up @@ -1048,7 +1048,8 @@ def list_members(self, *args, **kwargs):
"""
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
)

Expand Down

0 comments on commit 232fa29

Please sign in to comment.