diff --git a/docs/configuration/authentication/cookie.md b/docs/configuration/authentication/cookie.md index fe4f5ff4..9a9a1a77 100644 --- a/docs/configuration/authentication/cookie.md +++ b/docs/configuration/authentication/cookie.md @@ -11,7 +11,7 @@ SECRET = "SECRET" auth_backends = [] -cookie_authentication = CookieAuthentication(secret=SECRET, lifetime_seconds=3600)) +cookie_authentication = CookieAuthentication(secret=SECRET, lifetime_seconds=3600) auth_backends.append(cookie_authentication) ``` 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) ```