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