Skip to content

Commit

Permalink
Fix all (#2)
Browse files Browse the repository at this point in the history
  • Loading branch information
arthanson authored Mar 28, 2023
1 parent bf81e1d commit 0c4c836
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion netbox_python/baseapi.py
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@ def all(self, **kwargs):
if not result:
result = page
else:
result.data.append(page.data)
result.data.extend(page.data)

result.pagination["next"] = None
result.pagination["previous"] = None
Expand Down
2 changes: 1 addition & 1 deletion setup.cfg
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
[bumpversion]
current_version = 0.1.4
current_version = 0.1.5
commit = True
tag = True

Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -42,6 +42,6 @@
test_suite="tests",
tests_require=test_requirements,
url="https://github.com/netbox-community/netbox_python",
version="0.1.4",
version="0.1.5",
zip_safe=False,
)

0 comments on commit 0c4c836

Please sign in to comment.