Skip to content

Commit

Permalink
#1 limit
Browse files Browse the repository at this point in the history
  • Loading branch information
Scobiform committed Apr 17, 2024
1 parent f05e56c commit ff154f9
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions start.py
Original file line number Diff line number Diff line change
Expand Up @@ -70,8 +70,8 @@ async def home():
user = mastodon.account_verify_credentials()

# Fetch followers and followings
followers = mastodon.account_followers(user['id'])
followings = mastodon.account_following(user['id'])
followers = mastodon.account_followers(user['id'], limit=500)
followings = mastodon.account_following(user['id'], limit=500)

# Generate graph data
graph = await get_graph(await generate_graph_data(user, followers, followings))
Expand Down

0 comments on commit ff154f9

Please sign in to comment.