Skip to content

Commit

Permalink
Rename function to be consistent with tweepy
Browse files Browse the repository at this point in the history
  • Loading branch information
Phrancis committed Aug 21, 2019
1 parent 57e36c6 commit fd34c50
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions followers/extract_all_user_followers_ids.py
Expand Up @@ -9,7 +9,7 @@
PATH_TO_APP_DATA = os.path.join(os.path.dirname(os.path.dirname(__file__)), 'app_data')


def extract_all_follower_user_ids(screen_name: str = '') -> None:
def extract_all_user_followers_ids(screen_name: str = '') -> None:
"""
Get all of an account's followers' user IDs and write them to a JSON file with today's date.
:param screen_name: The screen name of the account to query. If left blank, will use the API user's screen name.
Expand All @@ -32,4 +32,4 @@ def extract_all_follower_user_ids(screen_name: str = '') -> None:


if __name__ == '__main__':
extract_all_follower_user_ids()
extract_all_user_followers_ids()

0 comments on commit fd34c50

Please sign in to comment.