From 81e1c72588bc7f7edaaa6691f02384078999852e Mon Sep 17 00:00:00 2001 From: Florian Bruhin Date: Mon, 21 Dec 2015 10:02:43 +0100 Subject: [PATCH] pylint: unneeded-suppression -> useless-suppression --- tests/unit/commands/test_userscripts.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/unit/commands/test_userscripts.py b/tests/unit/commands/test_userscripts.py index fdda6992b..079d727a9 100644 --- a/tests/unit/commands/test_userscripts.py +++ b/tests/unit/commands/test_userscripts.py @@ -41,7 +41,7 @@ class TestQtFIFOReader: @pytest.yield_fixture def reader(self, tmpdir, qapp): fifo_path = str(tmpdir / 'fifo') - os.mkfifo(fifo_path) # pylint: disable=no-member,unneeded-suppression + os.mkfifo(fifo_path) # pylint: disable=no-member,useless-suppression reader = userscripts._QtFIFOReader(fifo_path) yield reader if reader._notifier.isEnabled():