Skip to content

Commit

Permalink
Fix linter check
Browse files Browse the repository at this point in the history
  • Loading branch information
srfwx committed Dec 6, 2024
1 parent cd6679d commit 7a3cc86
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions pynetbox/core/endpoint.py
Original file line number Diff line number Diff line change
Expand Up @@ -637,8 +637,8 @@ def count(self, *args, **kwargs):

if any(i in RESERVED_KWARGS for i in kwargs):
raise ValueError(
"A reserved {} kwarg was passed. Please remove it "
"try again.".format(RESERVED_KWARGS)
"A reserved kwarg was passed ({}). Please remove it "
"and try again.".format(RESERVED_KWARGS)
)

ret = Request(
Expand Down

0 comments on commit 7a3cc86

Please sign in to comment.