From 7dba1cfb88e6e6e3b79b51f9a15a4068518ac7fb Mon Sep 17 00:00:00 2001 From: mulhern Date: Tue, 8 Aug 2023 09:08:48 -0400 Subject: [PATCH] Use comma-separated list for bandit argument Signed-off-by: mulhern --- Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Makefile b/Makefile index 04b9276cc..775fcf9b1 100644 --- a/Makefile +++ b/Makefile @@ -16,7 +16,7 @@ lint: # Ignore B101 errors. We do not distribute optimized code, i.e., .pyo # files in Fedora, so we do not need to have concerns that assertions # are removed by optimization. - bandit --recursive ./src ${BANDIT_SKIP} --skip B101 + bandit --recursive ./src ${BANDIT_SKIP},B101 bandit --recursive ./tests ${BANDIT_SKIP} .PHONY: fmt