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 ran into a bug in portalpy (the Github version), related to auto-paging in search function. If there are more than 100 results, then some bogus things get added to the results.
The fix is to change:
results.extend(resp)
to
results.extend(resp['results'])
The text was updated successfully, but these errors were encountered:
From Witt:
I ran into a bug in portalpy (the Github version), related to auto-paging in search function. If there are more than 100 results, then some bogus things get added to the results.
The fix is to change:
results.extend(resp)
to
results.extend(resp['results'])
The text was updated successfully, but these errors were encountered: