From 9715c4a3fd1d367e4a163c9c61d0c8377a8c3c36 Mon Sep 17 00:00:00 2001 From: Harmon Date: Sat, 13 Feb 2021 13:51:45 -0600 Subject: [PATCH] Add endpoint parameters for API.update_profile Add include_entities and skip_status endpoint parameters for API.update_profile --- tweepy/api.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/tweepy/api.py b/tweepy/api.py index 1f8c375..f62c5f6 100644 --- 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 ) -- 2.25.1