Skip to content

Commit

Permalink
Add endpoint parameters for API.update_profile
Browse files Browse the repository at this point in the history
Add include_entities and skip_status endpoint parameters for API.update_profile
  • Loading branch information
Harmon758 committed Feb 13, 2021
1 parent 1a5ba74 commit 9715c4a
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion tweepy/api.py
Expand Up @@ -733,7 +733,8 @@ def update_profile(self, *args, **kwargs):
"""
return self.request(
'POST', 'account/update_profile', *args, endpoint_parameters=(
'name', 'url', 'location', 'description', 'profile_link_color'
'name', 'url', 'location', 'description', 'profile_link_color',
'include_entities', 'skip_status'
), **kwargs
)

Expand Down

0 comments on commit 9715c4a

Please sign in to comment.