Remove last reference to the python six package
We missed an import of the six package. Change-Id: Id618b93d47a6e25a89144b3a93b12cbb5fc14797
This commit is contained in:
@@ -14,15 +14,12 @@
|
|||||||
|
|
||||||
import abc
|
import abc
|
||||||
|
|
||||||
import six
|
|
||||||
|
|
||||||
from keystoneauth1 import access
|
from keystoneauth1 import access
|
||||||
from keystoneauth1 import exceptions
|
from keystoneauth1 import exceptions
|
||||||
from keystoneauth1.identity.v3 import base
|
from keystoneauth1.identity.v3 import base
|
||||||
|
|
||||||
|
|
||||||
@six.add_metaclass(abc.ABCMeta)
|
class OAuth2mTlsClientCredential(base.BaseAuth, metaclass=abc.ABCMeta):
|
||||||
class OAuth2mTlsClientCredential(base.BaseAuth):
|
|
||||||
"""A plugin for authenticating via an OAuth2.0 mTLS client credential.
|
"""A plugin for authenticating via an OAuth2.0 mTLS client credential.
|
||||||
|
|
||||||
:param string auth_url: keystone authorization endpoint.
|
:param string auth_url: keystone authorization endpoint.
|
||||||
|
|||||||
Reference in New Issue
Block a user