From 07339618bc052be25c0877c788840aa49384626f Mon Sep 17 00:00:00 2001 From: John Pennycook Date: Fri, 9 Feb 2024 09:47:04 -0800 Subject: [PATCH] Remove flake8-bandit from pre-commit flake8-bandit expects a .bandit file in TOML format, whereas bandit itself expects a bandit configuration file. This conflict results in an error. Since we're already running bandit, we don't need to run flake8-bandit as well. Signed-off-by: John Pennycook --- .pre-commit-config.yaml | 1 - 1 file changed, 1 deletion(-) diff --git a/.pre-commit-config.yaml b/.pre-commit-config.yaml index 3a18279..c970963 100644 --- a/.pre-commit-config.yaml +++ b/.pre-commit-config.yaml @@ -49,7 +49,6 @@ repos: - id: flake8 additional_dependencies: [ - flake8-bandit, flake8-debugger, flake8-use-fstring, ]