summaryrefslogtreecommitdiff
path: root/tests/functional/u/undefined
diff options
context:
space:
mode:
authorMarc Mueller <30130371+cdce8p@users.noreply.github.com>2022-05-05 18:47:47 +0200
committerGitHub <noreply@github.com>2022-05-05 18:47:47 +0200
commit66fcbeb9fc088f4c88a007cb87e590b6765b2391 (patch)
tree472a7881101f5d0a8e4c9385b983bf3d3dd678f4 /tests/functional/u/undefined
parent04d54f3d179d378076e9dd465cbd8a35a32d659b (diff)
downloadpylint-git-66fcbeb9fc088f4c88a007cb87e590b6765b2391.tar.gz
Move no-self-use to optional extension (#6448)
Co-authored-by: Pierre Sassoulas <pierre.sassoulas@gmail.com>
Diffstat (limited to 'tests/functional/u/undefined')
-rw-r--r--tests/functional/u/undefined/undefined_variable.py2
-rw-r--r--tests/functional/u/undefined/undefined_variable_py30.py2
2 files changed, 2 insertions, 2 deletions
diff --git a/tests/functional/u/undefined/undefined_variable.py b/tests/functional/u/undefined/undefined_variable.py
index 6676d9a19..1336aa357 100644
--- a/tests/functional/u/undefined/undefined_variable.py
+++ b/tests/functional/u/undefined/undefined_variable.py
@@ -1,5 +1,5 @@
# pylint: disable=missing-docstring, multiple-statements, useless-object-inheritance, import-outside-toplevel
-# pylint: disable=too-few-public-methods, no-self-use, bare-except, broad-except
+# pylint: disable=too-few-public-methods, bare-except, broad-except
# pylint: disable=using-constant-test, import-error, global-variable-not-assigned, unnecessary-comprehension
# pylint: disable=unnecessary-lambda-assignment
diff --git a/tests/functional/u/undefined/undefined_variable_py30.py b/tests/functional/u/undefined/undefined_variable_py30.py
index 78112189e..a0beef00e 100644
--- a/tests/functional/u/undefined/undefined_variable_py30.py
+++ b/tests/functional/u/undefined/undefined_variable_py30.py
@@ -1,6 +1,6 @@
"""Test warnings about access to undefined variables
for various Python 3 constructs. """
-# pylint: disable=too-few-public-methods, no-self-use, import-error
+# pylint: disable=too-few-public-methods, import-error
# pylint: disable=wrong-import-position, invalid-metaclass, useless-object-inheritance
class Undefined:
""" test various annotation problems. """