Disable bandit rule B310

This specfic rule is too dumb to be helpful.
https://stackoverflow.com/a/53040523
This commit is contained in:
Chocobo1 2024-08-14 14:33:05 +08:00
parent 1984449f63
commit 16522073e1
No known key found for this signature in database
GPG Key ID: 210D9C873253A68C
1 changed files with 1 additions and 1 deletions

View File

@ -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: |