Skip to content

Commit

Permalink
Remove id endpoint parameter for API.followers
Browse files Browse the repository at this point in the history
  • Loading branch information
Harmon758 committed Feb 12, 2021
1 parent 7d42597 commit a3fb959
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions tweepy/api.py
Original file line number Diff line number Diff line change
Expand Up @@ -658,8 +658,8 @@ def followers(self, *args, **kwargs):
"""
return self.request(
'GET', 'followers/list', *args, endpoint_parameters=(
'id', 'user_id', 'screen_name', 'cursor', 'count',
'skip_status', 'include_user_entities'
'user_id', 'screen_name', 'cursor', 'count', 'skip_status',
'include_user_entities'
), **kwargs
)

Expand Down

0 comments on commit a3fb959

Please sign in to comment.