diff --git a/utils/arg_parser.py b/utils/arg_parser.py index 41e2afac..c433fcb3 100644 --- a/utils/arg_parser.py +++ b/utils/arg_parser.py @@ -699,8 +699,8 @@ def parse_args(name: str, description: str): # noqa if hasattr(args, "distribution") and args.distribution == "custom": if ( - subprocess.call( - ["docker", "run", "--rm", args.tags[0], "ls", "extras/opencv"], # nosec + subprocess.call( # nosec B603 B607 + ["docker", "run", "--rm", args.tags[0], "ls", "extras/opencv"], # nosec B603 B607 stdout=subprocess.PIPE, stderr=subprocess.STDOUT, )