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 was reading through the source code of this package cause I needed to copy something, when I realized that:
cur_total= (len(items) +raw_data['Count'])
Why is this defined like this? It effectively makes the count of total items retrieved twice as much as it actually is, since items = raw_data['Items'].
The text was updated successfully, but these errors were encountered:
I was reading through the source code of this package cause I needed to copy something, when I realized that:
Why is this defined like this? It effectively makes the count of total items retrieved twice as much as it actually is, since
items = raw_data['Items']
.The text was updated successfully, but these errors were encountered: