Remove query_parameters from within loop duplicating parameters in URL request

This commit is contained in:
jamesmarshall24 2020-06-05 18:12:10 -07:00
parent e603cfd7ab
commit 2394c0cb3d

View File

@ -276,7 +276,7 @@ class Page(object):
if all_pages and page.next:
paged_results = [r.json()['results']]
while page.next:
r = self.connection.get(self.next, query_parameters)
r = self.connection.get(self.next)
page = self.page_identity(r)
paged_results.append(r.json()['results'])
json = r.json()