From 1b788f7593dd24eaabb3d8404d0d24814ce0f4ff Mon Sep 17 00:00:00 2001 From: Ro Date: Fri, 15 Mar 2024 10:41:04 -0400 Subject: [PATCH] Exclude root project .venv from bandit --- pyproject.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pyproject.toml b/pyproject.toml index ac81d9c9b..5a2fa02f1 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -16,7 +16,7 @@ safety = "*" shellcheck-py = "*" [tool.bandit] -exclude_dirs = ["client/tests", "export/tests", "log/tests", "proxy/tests"] +exclude_dirs = ["client/tests", "export/tests", "log/tests", "proxy/tests", ".venv/"] [tool.black] line-length = 100