From: Harmon Date: Sun, 14 Feb 2021 06:26:18 +0000 (-0600) Subject: Stop allowing positional arguments for API.create_saved_search X-Git-Url: https://vcs.fsf.org/?a=commitdiff_plain;h=76be2d9cfb2c8437627531ea7cb30047fbfd8355;p=tweepy.git Stop allowing positional arguments for API.create_saved_search Stop allowing positional arguments besides query for API.create_saved_search --- diff --git a/tweepy/api.py b/tweepy/api.py index 77a9f8e..9f8143e 100644 --- a/tweepy/api.py +++ b/tweepy/api.py @@ -877,12 +877,11 @@ class API: return self.request('GET', f'saved_searches/show/{id}', **kwargs) @payload('saved_search') - def create_saved_search(self, query, *args, **kwargs): + def create_saved_search(self, query, **kwargs): """ :reference: https://developer.twitter.com/en/docs/accounts-and-users/manage-account-settings/api-reference/post-saved_searches-create """ return self.request( - 'POST', 'saved_searches/create', query, *args, - endpoint_parameters=( + 'POST', 'saved_searches/create', query, endpoint_parameters=( 'query', ), **kwargs )