Skip to content

Commit

Permalink
fix docstring indent
Browse files Browse the repository at this point in the history
  • Loading branch information
guillaume-pujol committed Aug 2, 2022
1 parent c9b8e26 commit f5c13af
Showing 1 changed file with 7 additions and 7 deletions.
14 changes: 7 additions & 7 deletions jwskate/jwt/signer.py
Original file line number Diff line number Diff line change
Expand Up @@ -30,13 +30,13 @@ class JwtSigner:
issuer issues multiple tokens.
Args:
issuer: the issuer string to use as `ìss` claim for signed tokens.
jwk: the private Jwk to use to sign tokens.
alg: the signing alg to use to sign tokens.
default_lifetime: the default lifetime, in seconds, to use for claim `exp`. This can be overridden
when calling `.sign()`
default_leeway: the default leeway, in seconds, to use for claim `nbf`. If None, no `nbf` claim is
included. This can be overridden when calling `.sign()`
issuer: the issuer string to use as `ìss` claim for signed tokens.
jwk: the private Jwk to use to sign tokens.
alg: the signing alg to use to sign tokens.
default_lifetime: the default lifetime, in seconds, to use for claim `exp`. This can be overridden
when calling `.sign()`
default_leeway: the default leeway, in seconds, to use for claim `nbf`. If None, no `nbf` claim is
included. This can be overridden when calling `.sign()`
"""

def __init__(
Expand Down

0 comments on commit f5c13af

Please sign in to comment.