From eb7c8f6e668bf4fe00cdd2f58cc8b7c3fd9c6ed4 Mon Sep 17 00:00:00 2001 From: Harmon Date: Mon, 8 Feb 2021 02:44:02 -0600 Subject: [PATCH] Add endpoint parameters for API.mentions_timeline trim_user and include_entities --- tweepy/api.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tweepy/api.py b/tweepy/api.py index 2deb905..fdd6f55 100644 --- a/tweepy/api.py +++ b/tweepy/api.py @@ -289,7 +289,7 @@ class API: """ return self.request( 'GET', 'statuses/mentions_timeline', endpoint_parameters=( - 'since_id', 'max_id', 'count' + 'count', 'since_id', 'max_id', 'trim_user', 'include_entities' ), **kwargs ) -- 2.25.1