From c8f9da0980785d4a810de2c162d95ce462137a8f Mon Sep 17 00:00:00 2001 From: Jeremy Frasier Date: Wed, 28 Aug 2024 09:20:26 -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 c3e888e..24108e6 100644 --- a/.pre-commit-config.yaml +++ b/.pre-commit-config.yaml @@ -132,7 +132,7 @@ repos: - --config=.bandit.yml # Run bandit on everything but the tests directory - repo: https://github.com/PyCQA/bandit - rev: 1.7.4 + rev: 1.7.7 hooks: - id: bandit name: bandit (everything but the tests directory)