root: run bandit as part of pre-commit
This commit is contained in:
parent
93ba4b7f62
commit
32a15f84c0
|
@ -1,6 +1,5 @@
|
|||
"""passbook saml source processor"""
|
||||
from typing import Optional
|
||||
from xml.etree.ElementTree import Element
|
||||
from typing import TYPE_CHECKING, Optional
|
||||
|
||||
from defusedxml import ElementTree
|
||||
from django.http import HttpRequest
|
||||
|
@ -16,6 +15,8 @@ from passbook.sources.saml.exceptions import (
|
|||
from passbook.sources.saml.models import SAMLSource
|
||||
|
||||
LOGGER = get_logger()
|
||||
if TYPE_CHECKING:
|
||||
from xml.etree.ElementTree import Element # nosec
|
||||
|
||||
|
||||
class Processor:
|
||||
|
@ -23,7 +24,7 @@ class Processor:
|
|||
|
||||
_source: SAMLSource
|
||||
|
||||
_root: Element
|
||||
_root: "Element"
|
||||
_root_xml: str
|
||||
|
||||
def __init__(self, source: SAMLSource):
|
||||
|
|
|
@ -2,5 +2,6 @@
|
|||
isort -rc passbook
|
||||
black passbook
|
||||
scripts/coverage.sh
|
||||
bandit -r passbook
|
||||
pylint passbook
|
||||
prospector
|
||||
|
|
Reference in New Issue