From: Harmon Date: Sat, 13 Feb 2021 20:05:36 +0000 (-0600) Subject: Add include_entities endpoint parameter for API.destroy_favorite X-Git-Url: https://vcs.fsf.org/?a=commitdiff_plain;h=ecd19f071b385cc9649a699e502cc215b441e071;p=tweepy.git Add include_entities endpoint parameter for API.destroy_favorite --- diff --git a/tweepy/api.py b/tweepy/api.py index a5ea9fb..0d6eb25 100644 --- a/tweepy/api.py +++ b/tweepy/api.py @@ -766,7 +766,7 @@ class API: """ return self.request( 'POST', 'favorites/destroy', id, *args, endpoint_parameters=( - 'id', + 'id', 'include_entities' ), **kwargs )