From d74264bdb80d2df3200ae549e8731c42a1347104 Mon Sep 17 00:00:00 2001 From: "willem.meints@gmail.com" <1550763+wmeints@users.noreply.github.com> Date: Sat, 6 Apr 2024 10:27:02 +0200 Subject: [PATCH] Fix linting errors --- tests/contrib/test_simplejwt.py | 1 + 1 file changed, 1 insertion(+) diff --git a/tests/contrib/test_simplejwt.py b/tests/contrib/test_simplejwt.py index ae710fa9..2e0a8b8a 100644 --- a/tests/contrib/test_simplejwt.py +++ b/tests/contrib/test_simplejwt.py @@ -33,6 +33,7 @@ class X2Viewset(mixins.ListModelMixin, viewsets.GenericViewSet): authentication_classes = [JWTTokenUserAuthentication] required_scopes = ['x:read', 'x:write'] + class X3Viewset(mixins.ListModelMixin, viewsets.GenericViewSet): serializer_class = XSerializer authentication_classes = [JWTStatelessUserAuthentication]