From d37a409e96553d86621a6caa125c5581cac0b3f7 Mon Sep 17 00:00:00 2001 From: Harmon Date: Fri, 19 Feb 2021 09:48:31 -0600 Subject: [PATCH] Remove endpoint parameters for API.geo_search Remove accuracy and contained_within endpoint parameters for API.geo_search --- tweepy/api.py | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) 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 ) -- 2.25.1