From b273a435dc0f1e889c5e6359f583ccacb4c3fede Mon Sep 17 00:00:00 2001 From: Pascal Urban Date: Sat, 2 Nov 2019 14:30:58 +0100 Subject: [PATCH] Fix flake8 warning in test case --- pylint_django/tests/input/func_unused_arguments.py | 1 + 1 file changed, 1 insertion(+) diff --git a/pylint_django/tests/input/func_unused_arguments.py b/pylint_django/tests/input/func_unused_arguments.py index c91c9af2..438c13c2 100644 --- a/pylint_django/tests/input/func_unused_arguments.py +++ b/pylint_django/tests/input/func_unused_arguments.py @@ -14,6 +14,7 @@ request = None # pylint: disable=invalid-name + def user_detail(request, user_id): # [unused-argument] # nothing is done with user_id return JsonResponse({'username': 'steve'})