Skip to content

Commit

Permalink
#56 Fix error with followers_count parsing error, release version 1.3.1
Browse files Browse the repository at this point in the history
  • Loading branch information
markowanga committed Feb 26, 2021
1 parent 61eb083 commit 8024821
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@

setuptools.setup(
name="stweet",
version="1.3.0",
version="1.3.1",
author="Marcin Wątroba",
author_email="markowanga@gmail.com",
description="Package to scrap tweets",
Expand Down
2 changes: 1 addition & 1 deletion stweet/get_user_runner/user_parser.py
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ def parse_user(response_content: str) -> User:
default_profile_image=legacy_user_json['default_profile_image'],
description=legacy_user_json['description'],
favourites_count=legacy_user_json['favourites_count'],
followers_count=legacy_user_json['favourites_count'],
followers_count=legacy_user_json['followers_count'],
friends_count=legacy_user_json['friends_count'],
has_custom_timelines=legacy_user_json['has_custom_timelines'],
listed_count=legacy_user_json['listed_count'],
Expand Down

0 comments on commit 8024821

Please sign in to comment.