projects
/
tweepy.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
1a5ba74
)
Add endpoint parameters for API.update_profile
author
Harmon
<Harmon758@gmail.com>
Sat, 13 Feb 2021 19:51:45 +0000
(13:51 -0600)
committer
Harmon
<Harmon758@gmail.com>
Sat, 13 Feb 2021 19:51:45 +0000
(13:51 -0600)
Add include_entities and skip_status endpoint parameters for API.update_profile
tweepy/api.py
patch
|
blob
|
blame
|
history
diff --git
a/tweepy/api.py
b/tweepy/api.py
index 1f8c37568660919d9d342931e36937e947996cfe..f62c5f65250609d49cb56164a8d2bcf24d54deed 100644
(file)
--- a/
tweepy/api.py
+++ b/
tweepy/api.py
@@
-733,7
+733,8
@@
class API:
"""
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
)