You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I observed this behavior where get_following() always returns a list that's missing exactly 1 of the accounts. I tracked it down to line 1122 of account.py:
followers_list += followers[1:]
It was a simple fix to remove the list slice, and the problem is solved. I'm not sure if this was done intentionally.
The text was updated successfully, but these errors were encountered:
I observed this behavior where get_following() always returns a list that's missing exactly 1 of the accounts. I tracked it down to line 1122 of account.py:
followers_list += followers[1:]
It was a simple fix to remove the list slice, and the problem is solved. I'm not sure if this was done intentionally.
The text was updated successfully, but these errors were encountered: