mirror of
https://github.com/fastapi-users/fastapi-users.git
synced 2026-03-13 07:49:55 +08:00
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:
@@ -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)
|
||||
```
|
||||
|
||||
Reference in New Issue
Block a user