From 16522073e19038123cf0c2e89161d9dcd9c2d95d Mon Sep 17 00:00:00 2001 From: Chocobo1 Date: Wed, 14 Aug 2024 14:33:05 +0800 Subject: [PATCH] Disable bandit rule B310 This specfic rule is too dumb to be helpful. https://stackoverflow.com/a/53040523 --- .github/workflows/ci.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/ci.yaml b/.github/workflows/ci.yaml index ae02af5..27b0f86 100644 --- a/.github/workflows/ci.yaml +++ b/.github/workflows/ci.yaml @@ -32,7 +32,7 @@ jobs: - name: Lint code run: | pyflakes nova3/engines/*.py - bandit --skip B110,B314,B405 nova3/engines/*.py + bandit --skip B110,B310,B314,B405 nova3/engines/*.py - name: Format code run: |