From: Harmon Date: Fri, 19 Feb 2021 15:48:31 +0000 (-0600) Subject: Remove endpoint parameters for API.geo_search X-Git-Url: https://vcs.fsf.org/?a=commitdiff_plain;h=d37a409e96553d86621a6caa125c5581cac0b3f7;p=tweepy.git Remove endpoint parameters for API.geo_search Remove accuracy and contained_within endpoint parameters for API.geo_search --- diff --git a/tweepy/api.py b/tweepy/api.py index 043da6d..bbbfae3 100644 --- a/tweepy/api.py +++ b/tweepy/api.py @@ -1191,8 +1191,7 @@ class API: """ return self.request( 'GET', 'geo/search', *args, endpoint_parameters=( - 'lat', 'long', 'query', 'ip', 'granularity', 'accuracy', - 'max_results', 'contained_within' + 'lat', 'long', 'query', 'ip', 'granularity', 'max_results' ), **kwargs )