summaryrefslogtreecommitdiff
path: root/tests/functional/a
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/a
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/a')
-rw-r--r--tests/functional/a/assigning/assigning_non_slot.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/functional/a/assigning/assigning_non_slot.py b/tests/functional/a/assigning/assigning_non_slot.py
index 2cd1483e0..0a0c0427c 100644
--- a/tests/functional/a/assigning/assigning_non_slot.py
+++ b/tests/functional/a/assigning/assigning_non_slot.py
@@ -1,7 +1,7 @@
""" Checks assigning attributes not found in class slots
will trigger assigning-non-slot warning.
"""
-# pylint: disable=too-few-public-methods, no-init, missing-docstring, import-error, useless-object-inheritance, redundant-u-string-prefix
+# pylint: disable=too-few-public-methods, no-init, missing-docstring, import-error, useless-object-inheritance, redundant-u-string-prefix, unnecessary-dunder-call
from collections import deque
from missing import Unknown