ci: coccinelle: Suppress pylint false positive
Suppress pylint false positive on 'sh' library.
Signed-off-by: Flavio Ceolin <flavio.ceolin@intel.com>
diff --git a/scripts/ci/guideline_check.py b/scripts/ci/guideline_check.py
index 546ed93..0cbfc35 100755
--- a/scripts/ci/guideline_check.py
+++ b/scripts/ci/guideline_check.py
@@ -51,6 +51,8 @@
if not args.commits:
exit("missing commit range")
+ # pylint does not like the 'sh' library
+ # pylint: disable=too-many-function-args,unexpected-keyword-arg
commit = sh.git("diff", args.commits, **sh_special_args)
patch_set = PatchSet(commit)
zephyr_base = os.getenv("ZEPHYR_BASE")