diff --git a/docs/configuration/authentication/jwt.md b/docs/configuration/authentication/jwt.md index 1d0b5ecf..953905e1 100644 --- a/docs/configuration/authentication/jwt.md +++ b/docs/configuration/authentication/jwt.md @@ -11,7 +11,7 @@ SECRET = "SECRET" auth_backends = [] -jwt_authentication = JWTAuthentication(secret=SECRET, lifetime_seconds=3600)) +jwt_authentication = JWTAuthentication(secret=SECRET, lifetime_seconds=3600) auth_backends.append(jwt_authentication) ```