Skip to content

Commit

Permalink
Remove endpoint parameters for API.geo_search
Browse files Browse the repository at this point in the history
Remove accuracy and contained_within endpoint parameters for API.geo_search
  • Loading branch information
Harmon758 committed Feb 19, 2021
1 parent a0cff22 commit d37a409
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions tweepy/api.py
Original file line number Diff line number Diff line change
Expand Up @@ -1191,8 +1191,7 @@ def geo_search(self, *args, **kwargs):
"""
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
)

Expand Down

0 comments on commit d37a409

Please sign in to comment.