Add bandit to CI

This commit is contained in:
Jens Langhammer
2018-12-09 17:44:54 +01:00
parent f4c5ba27cc
commit 10bb06cc7e
4 changed files with 9 additions and 15 deletions

View File

@ -19,7 +19,7 @@ class BaseOAuthClient:
_session = None
def __init__(self, source, token=''):
def __init__(self, source, token=''): # nosec
self.source = source
self.token = token
self._session = Session()
@ -238,7 +238,7 @@ class OAuth2Client(BaseOAuthClient):
return 'oauth-client-{0}-request-state'.format(self.source.name)
def get_client(source, token=''):
def get_client(source, token=''): # nosec
"Return the API client for the given source."
cls = OAuth2Client
if source.request_token_url: