From 95e67bba7bcd6588d7acfc4420237ce12d9dcfad Mon Sep 17 00:00:00 2001 From: Florian Bruhin Date: Mon, 21 Dec 2015 09:47:20 +0100 Subject: [PATCH] Suppress pylint no-member for os.mkfifo. --- 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 dbd921fa6..9848e5276 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) + os.mkfifo(fifo_path) # pylint: disable=no-member,unneeded-suppression reader = userscripts._QtFIFOReader(fifo_path) yield reader if reader._notifier.isEnabled():