summaryrefslogtreecommitdiff
path: root/tests/functional/t/too/too_many_arguments.py
diff options
context:
space:
mode:
authorJoe Young <80432516+jpy-git@users.noreply.github.com>2022-03-30 11:47:30 +0100
committerGitHub <noreply@github.com>2022-03-30 12:47:30 +0200
commit1f0b406d3e7b7e670ff7f887c9ed25228da220d2 (patch)
treec3ef11d8056bd4245bd37d93aab8180792cb91b8 /tests/functional/t/too/too_many_arguments.py
parent5324fecb32b0c86a70c88fc196360d721085fdfc (diff)
downloadpylint-git-1f0b406d3e7b7e670ff7f887c9ed25228da220d2.tar.gz
C2801: New check for manual __dunder__ methods (#5938)
Co-authored-by: Pierre Sassoulas <pierre.sassoulas@gmail.com> Co-authored-by: Daniƫl van Noord <13665637+DanielNoord@users.noreply.github.com>
Diffstat (limited to 'tests/functional/t/too/too_many_arguments.py')
-rw-r--r--tests/functional/t/too/too_many_arguments.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/functional/t/too/too_many_arguments.py b/tests/functional/t/too/too_many_arguments.py
index 689745e27..8d26902af 100644
--- a/tests/functional/t/too/too_many_arguments.py
+++ b/tests/functional/t/too/too_many_arguments.py
@@ -1,4 +1,4 @@
-# pylint: disable=missing-docstring,wrong-import-position
+# pylint: disable=missing-docstring,wrong-import-position,unnecessary-dunder-call
def stupid_function(arg1, arg2, arg3, arg4, arg5, arg6, arg7, arg8, arg9): # [too-many-arguments]
return arg1, arg2, arg3, arg4, arg5, arg6, arg7, arg8, arg9