We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent e5baf6a commit 330fdafCopy full SHA for 330fdaf
rest_framework_simplejwt/backends.py
@@ -20,7 +20,7 @@ def __init__(
20
self,
21
algorithm,
22
signing_key=None,
23
- verifying_key=None,
+ verifying_key="",
24
audience=None,
25
issuer=None,
26
jwk_url: str = None,
rest_framework_simplejwt/settings.py
@@ -18,7 +18,7 @@
18
19
'ALGORITHM': 'HS256',
'SIGNING_KEY': settings.SECRET_KEY,
- 'VERIFYING_KEY': None,
+ 'VERIFYING_KEY': "",
'AUDIENCE': None,
'ISSUER': None,
'JWK_URL': None,
0 commit comments