pydactyl icon indicating copy to clipboard operation
pydactyl copied to clipboard

PaginatedResponse not working correctly

Open iamkubi opened this issue 2 years ago • 0 comments

The prints in this code have the same result:

    response = api.nodes.list_nodes()
    for page in response:
        print ('page: {}'.format(page))
        for node in page:
            print('node: {}'.format(node))

Must be a bug in PaginatedResponse.

iamkubi avatar Jan 10 '22 20:01 iamkubi