Suppress pylint no-member for os.mkfifo.
This commit is contained in:
parent
9f64dfb3b6
commit
95e67bba7b
@ -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():
|
||||
|
Loading…
Reference in New Issue
Block a user