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 a4e2109 commit 148a2e3Copy full SHA for 148a2e3
rest_framework_simplejwt/authentication.py
@@ -23,7 +23,8 @@ class JWTAuthentication(authentication.BaseAuthentication):
23
"""
24
www_authenticate_realm = 'api'
25
26
- def __init__(self):
+ def __init__(self, *args, **kwargs):
27
+ super().__init__(*args, **kwargs)
28
self.user_model = get_user_model()
29
30
def authenticate(self, request):
0 commit comments