Skip to content

Commit

Permalink
Add endpoint parameters for API.show_list_member
Browse files Browse the repository at this point in the history
Add include_entities and skip_status endpoint parameters for API.show_list_member
  • Loading branch information
Harmon758 committed Feb 15, 2021
1 parent 46e2c08 commit e959787
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 @@ -1060,7 +1060,8 @@ def show_list_member(self, *args, **kwargs):
return self.request(
'GET', 'lists/members/show', *args, endpoint_parameters=(
'list_id', 'slug', 'user_id', 'screen_name',
'owner_screen_name', 'owner_id'
'owner_screen_name', 'owner_id', 'include_entities',
'skip_status'
), **kwargs
)

Expand Down

0 comments on commit e959787

Please sign in to comment.