Fix bandit warning

Bandit is throwing warnings because we use 'token' in a couple of
variables.

Change-Id: I9fd21974027bc2bda6036c34fa587a044faaacae
This commit is contained in:
Lance Bragstad 2019-06-20 15:07:57 +00:00
parent 3e62d25dac
commit 0c3b3f5ee2
1 changed files with 2 additions and 2 deletions

View File

@ -105,8 +105,8 @@ class _AuthTokenRequest(webob.Request):
_SYSTEM_SCOPE_HEADER = 'OpenStack-System-Scope'
_SERVICE_CATALOG_HEADER = 'X-Service-Catalog'
_TOKEN_AUTH = 'keystone.token_auth'
_TOKEN_INFO = 'keystone.token_info'
_TOKEN_AUTH = 'keystone.token_auth' # nosec
_TOKEN_INFO = 'keystone.token_info' # nosec
_CONFIRMED = 'Confirmed'
_INVALID = 'Invalid'