From 0ce5ce75e91a3c9ed96c01faa513e6ce62d4fccb Mon Sep 17 00:00:00 2001 From: Matthew Fernandez Date: Sat, 1 May 2021 18:05:01 -0700 Subject: [PATCH] disable Pylint warning for subprocess.run without check argument Graphviz generally have a good use case for calling subprocess.run without passing check. --- .pylintrc | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/.pylintrc b/.pylintrc index 4629b6ee6..707bbde2e 100644 --- a/.pylintrc +++ b/.pylintrc @@ -142,7 +142,8 @@ disable=print-statement, too-many-branches, too-many-statements, too-few-public-methods, - logging-fstring-interpolation + logging-fstring-interpolation, + subprocess-run-check # Enable the message, report, category or checker with the given id(s). You can # either give multiple identifier separated by comma (,) or put this option -- 2.40.0