Skip to content

Commit

Permalink
Add endpoint parameters for API.destroy_block
Browse files Browse the repository at this point in the history
Add include_entities and skip_status endpoint parameters for API.destroy_block
  • Loading branch information
Harmon758 committed Feb 13, 2021
1 parent 1c3a3ef commit 7299362
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tweepy/api.py
Original file line number Diff line number Diff line change
Expand Up @@ -786,7 +786,7 @@ def destroy_block(self, *args, **kwargs):
"""
return self.request(
'POST', 'blocks/destroy', *args, endpoint_parameters=(
'user_id', 'screen_name'
'user_id', 'screen_name', 'include_entities', 'skip_status'
), **kwargs
)

Expand Down

0 comments on commit 7299362

Please sign in to comment.