The doubled parenthesis causing error on line 14 has been removed (#268)

The parenthesis causing error on line 14 has been removed.
This commit is contained in:
oskar-gmerek
2020-07-21 14:24:51 +01:00
committed by GitHub
parent bde0c96cd8
commit 49665ca36d

View File

@@ -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)
```