Add endpoint parameters for API.update_profile
authorHarmon <Harmon758@gmail.com>
Sat, 13 Feb 2021 19:51:45 +0000 (13:51 -0600)
committerHarmon <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

index 1f8c37568660919d9d342931e36937e947996cfe..f62c5f65250609d49cb56164a8d2bcf24d54deed 100644 (file)
@@ -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
         )