Skip to content

Commit 336d1fa

Browse files
committed
Fixing pylint
1 parent 6bad7bc commit 336d1fa

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

core/users/views.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -146,7 +146,7 @@ def get(request):
146146
return Response(status=status.HTTP_405_METHOD_NOT_ALLOWED)
147147

148148
@swagger_auto_schema(request_body=AuthTokenSerializer)
149-
def post(self, request, *args, **kwargs):
149+
def post(self, request, *args, **kwargs): # pylint: disable=unused-argument
150150
if AuthService.is_sso_enabled():
151151
raise Http400(
152152
{'error': ["Single Sign On is enabled in this environment. Cannot login via API directly."]})

0 commit comments

Comments
 (0)