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

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

View File

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