From 65e0b5ad3e6fd9d2cf38847dfece64cf57357489 Mon Sep 17 00:00:00 2001 From: Jeremy Frasier Date: Wed, 28 Aug 2024 09:09:52 -0400 Subject: [PATCH] Use the same version of Bandit throughout the pre-commit config file It doesn't make sense to run Bandit twice with different versions. --- .pre-commit-config.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.pre-commit-config.yaml b/.pre-commit-config.yaml index 5a5000f..a629bcb 100644 --- a/.pre-commit-config.yaml +++ b/.pre-commit-config.yaml @@ -132,7 +132,7 @@ repos: - --config=.bandit.yml # Run bandit on everything except the "tests" tree - repo: https://github.com/PyCQA/bandit - rev: 1.7.7 + rev: 1.7.8 hooks: - id: bandit name: bandit (everything else)