From c3c9d29ecfffc75976b6d20b1efcfb084adfafaf Mon Sep 17 00:00:00 2001 From: Harmon Date: Fri, 19 Feb 2021 16:56:12 -0600 Subject: [PATCH] Remove endpoint parameters for API.update_with_media Remove in_reply_to_status_id_str and auto_populate_reply_metadata endpoint parameters for API.update_with_media --- tweepy/api.py | 1 - 1 file changed, 1 deletion(-) diff --git a/tweepy/api.py b/tweepy/api.py index 4d2672b..b36d0f7 100644 --- a/tweepy/api.py +++ b/tweepy/api.py @@ -386,7 +386,6 @@ class API: return self.request( 'POST', 'statuses/update_with_media', *args, endpoint_parameters=( 'status', 'possibly_sensitive', 'in_reply_to_status_id', - 'in_reply_to_status_id_str', 'auto_populate_reply_metadata', 'lat', 'long', 'place_id', 'display_coordinates' ), **kwargs ) -- 2.25.1