Skip to content

Commit

Permalink
fix docstring indent
Browse files Browse the repository at this point in the history
  • Loading branch information
guillp committed Sep 15, 2024
1 parent 0ed3fb1 commit f55f416
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions jwskate/jwt/verifier.py
Original file line number Diff line number Diff line change
Expand Up @@ -81,10 +81,10 @@ def verify(self, jwt: SignedJwt | str | bytes, *, max_size: int = 16 * 1024) ->
as configured at init time.
Args:
jwt: the JWT token to verify
max_size: maximum allowed size for the JWE token, in bytes.
If `jwt` is already a `SignedJwt` instance, this is ignored.
Pass a negative or 0 value to disable this check.
jwt: the JWT token to verify
max_size: maximum allowed size for the JWE token, in bytes.
If `jwt` is already a `SignedJwt` instance, this is ignored.
Pass a negative or 0 value to disable this check.
"""
if not isinstance(jwt, SignedJwt):
Expand Down

0 comments on commit f55f416

Please sign in to comment.