summaryrefslogtreecommitdiff
path: root/tests/extensions/test_overlapping_exceptions.py
diff options
context:
space:
mode:
authorPierre Sassoulas <pierre.sassoulas@gmail.com>2020-04-20 20:06:08 +0200
committerPierre Sassoulas <pierre.sassoulas@gmail.com>2020-04-20 21:58:08 +0200
commit6a4402877bf6bf406da2dd1a84c691a63bcb15fa (patch)
tree6f2257792ef0af1d70f55a4f0e660e41b08e0140 /tests/extensions/test_overlapping_exceptions.py
parent809eaee6d4e34ff4acc52562a8efcd04c41cbbc6 (diff)
downloadpylint-git-6a4402877bf6bf406da2dd1a84c691a63bcb15fa.tar.gz
[tests lint] Fix all W0613 unused-argument in pylint's own tests
Diffstat (limited to 'tests/extensions/test_overlapping_exceptions.py')
-rw-r--r--tests/extensions/test_overlapping_exceptions.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/tests/extensions/test_overlapping_exceptions.py b/tests/extensions/test_overlapping_exceptions.py
index 7785f458c..7f13bc726 100644
--- a/tests/extensions/test_overlapping_exceptions.py
+++ b/tests/extensions/test_overlapping_exceptions.py
@@ -12,12 +12,12 @@ from pylint.extensions.overlapping_exceptions import OverlappingExceptionsChecke
@pytest.fixture(scope="module")
-def checker(checker):
+def checker():
return OverlappingExceptionsChecker
@pytest.fixture(scope="module")
-def disable(disable):
+def disable():
return ["I"]