From bde0c96cd82a5abe779357d0a1baa1f0df0d7c26 Mon Sep 17 00:00:00 2001 From: oskar-gmerek <53402105+oskar-gmerek@users.noreply.github.com> Date: Tue, 21 Jul 2020 14:24:10 +0100 Subject: [PATCH] The doubled parenthesis causing error on line 14 has been removed (#269) The parenthesis causing error on line 14 has been removed --- docs/configuration/authentication/jwt.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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) ```