From: Harmon Date: Wed, 3 Feb 2021 21:46:45 +0000 (-0600) Subject: Pass kwargs to API.request in API.update_profile_banner X-Git-Url: https://vcs.fsf.org/?a=commitdiff_plain;h=4fe3b8238e9ceb049b803854e359a30c6d2cbf5e;p=tweepy.git Pass kwargs to API.request in API.update_profile_banner --- diff --git a/tweepy/api.py b/tweepy/api.py index e400604..c8ef42f 100644 --- a/tweepy/api.py +++ b/tweepy/api.py @@ -792,7 +792,7 @@ class API: 'POST', 'account/update_profile_banner', allowed_param=['width', 'height', 'offset_left', 'offset_right'], require_auth=True, - post_data=post_data, headers=headers + post_data=post_data, headers=headers, **kwargs ) @payload('user')