Skip to content

Commit

Permalink
Apply suggestions from code review
Browse files Browse the repository at this point in the history
  • Loading branch information
peppelinux authored Nov 21, 2024
1 parent b319f97 commit d209ec0
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion pyeudiw/jwt/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -278,7 +278,7 @@ def verify(self, jwt: str, **kwargs) -> (str | Any | bytes):
)
elif _head.get("jwk"):
raise NotImplementedError(
f"{_head.get('jwk') != {_jwk_dict}. Loaded/expected is {_jwk_dict}) while the verified JWT header is {_head}"
f"{_head.get('jwk')} != {_jwk_dict}. Loaded/expected is {_jwk_dict}) while the verified JWT header is {_head}"
)
else:
raise KidError(
Expand Down

0 comments on commit d209ec0

Please sign in to comment.