Skip to content
This repository has been archived by the owner on Feb 6, 2023. It is now read-only.

Commit

Permalink
fix: pager
Browse files Browse the repository at this point in the history
  • Loading branch information
jjeff07 committed Feb 24, 2022
1 parent bfa1722 commit e96ebda
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion ipfabric/client.py
Original file line number Diff line number Diff line change
Expand Up @@ -180,5 +180,5 @@ def _ipf_pager(
r = r.json()
data.extend(r["data"])
if limit + start < r["_meta"]["count"]:
self._ipf_pager(url, payload, data, start + limit)
self._ipf_pager(url, payload, data, limit=limit, start=start + limit)
return data

0 comments on commit e96ebda

Please sign in to comment.