Add endpoint parameters for API.mentions_timeline
authorHarmon <Harmon758@gmail.com>
Mon, 8 Feb 2021 08:44:02 +0000 (02:44 -0600)
committerHarmon <Harmon758@gmail.com>
Mon, 8 Feb 2021 08:44:02 +0000 (02:44 -0600)
trim_user and include_entities

tweepy/api.py

index 2deb905bf190d08b342d191030f3e236c6c47283..fdd6f55dda632e6c3bbecc44e742e00b85a0c188 100644 (file)
@@ -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
         )