From: Harmon Date: Fri, 19 Feb 2021 04:27:41 +0000 (-0600) Subject: Stop allowing positional arguments for API.search_30_day X-Git-Url: https://vcs.fsf.org/?a=commitdiff_plain;h=434fd35d76481f0281d62cd83b8da2bd47353e56;p=tweepy.git Stop allowing positional arguments for API.search_30_day Stop allowing positional arguments besides label and query for API.search_30_day --- diff --git a/tweepy/api.py b/tweepy/api.py index d398047..44b5cee 100644 --- a/tweepy/api.py +++ b/tweepy/api.py @@ -1148,12 +1148,11 @@ class API: @pagination(mode='next') @payload('status', list=True) - def search_30_day(self, label, query, *args, **kwargs): + def search_30_day(self, label, query, **kwargs): """ :reference: https://developer.twitter.com/en/docs/tweets/search/api-reference/premium-search """ return self.request( - 'GET', f'tweets/search/30day/{label}', query, *args, - endpoint_parameters=( + 'GET', f'tweets/search/30day/{label}', query, endpoint_parameters=( 'query', 'tag', 'fromDate', 'toDate', 'maxResults', 'next' ), **kwargs )