diff options
author | Pierre Sassoulas <pierre.sassoulas@gmail.com> | 2020-04-20 20:06:08 +0200 |
---|---|---|
committer | Pierre Sassoulas <pierre.sassoulas@gmail.com> | 2020-04-20 21:58:08 +0200 |
commit | 6a4402877bf6bf406da2dd1a84c691a63bcb15fa (patch) | |
tree | 6f2257792ef0af1d70f55a4f0e660e41b08e0140 /tests/extensions/test_emptystring.py | |
parent | 809eaee6d4e34ff4acc52562a8efcd04c41cbbc6 (diff) | |
download | pylint-git-6a4402877bf6bf406da2dd1a84c691a63bcb15fa.tar.gz |
[tests lint] Fix all W0613 unused-argument in pylint's own tests
Diffstat (limited to 'tests/extensions/test_emptystring.py')
-rw-r--r-- | tests/extensions/test_emptystring.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/tests/extensions/test_emptystring.py b/tests/extensions/test_emptystring.py index 9c8be6b2b..2728da301 100644 --- a/tests/extensions/test_emptystring.py +++ b/tests/extensions/test_emptystring.py @@ -17,12 +17,12 @@ from pylint.extensions.emptystring import CompareToEmptyStringChecker @pytest.fixture(scope="module") -def checker(checker): +def checker(): return CompareToEmptyStringChecker @pytest.fixture(scope="module") -def disable(disable): +def disable(): return ["I"] |