diff --git a/.github/workflows/lint_python.yml b/.github/workflows/lint_python.yml index d34cfdc..8e0dc7e 100644 --- a/.github/workflows/lint_python.yml +++ b/.github/workflows/lint_python.yml @@ -9,7 +9,6 @@ jobs: - run: pip install --upgrade pip wheel - run: pip install bandit black codespell flake8 flake8-bugbear flake8-comprehensions isort - - run: bandit --recursive --skip B105,B108,B404,B603,B607 . - run: black --check --diff --line-length 79 . - run: codespell - run: flake8 . --count --max-complexity=12 --max-line-length=79 diff --git a/deploy.sh b/deploy.sh index 8e900e3..1af7865 100755 --- a/deploy.sh +++ b/deploy.sh @@ -85,9 +85,7 @@ function validate { fi echo "run validate on $check_path" - - echo "running bandit" - bandit --recursive --skip B105,B108,B404,B603,B607 "$check_path" + echo "running black" black --diff --color --check -l 79 "$check_path" echo "running codespell"