There doesn't appear to be any easy way of reducing the complexity
of this function without moving it elsewhere or completely reorganising
the function, so disable this warning for the time being.
Signed-off-by: Brian Foley <
bpf...@google.com>
---
lib/utils/process.py | 1 +
1 file changed, 1 insertion(+)
diff --git a/lib/utils/process.py b/lib/utils/process.py
index bb5aed2..05553fc 100644
--- a/lib/utils/process.py
+++ b/lib/utils/process.py
@@ -530,6 +530,7 @@ def _RunCmdPipe(cmd, env, via_shell, cwd, interactive, timeout, noclose_fds,
@return: (out, err, status)
"""
+ # pylint: disable=R0101
poller = select.poll()
if interactive:
--
2.8.0.rc3.226.g39d4020