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'})