From 6faa188d24cd4b8d8ddcd445e5689cb6d9e0fec4 Mon Sep 17 00:00:00 2001 From: Johannes Christ Date: Fri, 26 Oct 2018 19:42:28 +0200 Subject: Use proper `noqa` comment. --- api/tests/base.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/api/tests/base.py b/api/tests/base.py index 395dc55c..5d8ccf8c 100644 --- a/api/tests/base.py +++ b/api/tests/base.py @@ -5,7 +5,7 @@ from rest_framework.test import APITestCase test_user, _created = User.objects.get_or_create( username='test', email='test@example.com', - password='testpass', # flake8: noqa - S106 + password='testpass', # noqa: S106 is_superuser=True, is_staff=True ) -- cgit v1.2.3