summaryrefslogtreecommitdiff
path: root/keystoneclient/auth/identity
diff options
context:
space:
mode:
Diffstat (limited to 'keystoneclient/auth/identity')
-rw-r--r--keystoneclient/auth/identity/access.py3
-rw-r--r--keystoneclient/auth/identity/base.py2
-rw-r--r--keystoneclient/auth/identity/generic/cli.py2
-rw-r--r--keystoneclient/auth/identity/generic/password.py2
-rw-r--r--keystoneclient/auth/identity/v2.py3
-rw-r--r--keystoneclient/auth/identity/v3/base.py2
6 files changed, 0 insertions, 14 deletions
diff --git a/keystoneclient/auth/identity/access.py b/keystoneclient/auth/identity/access.py
index 5849b75..3e096b7 100644
--- a/keystoneclient/auth/identity/access.py
+++ b/keystoneclient/auth/identity/access.py
@@ -10,8 +10,6 @@
# License for the specific language governing permissions and limitations
# under the License.
-from positional import positional
-
from keystoneclient.auth.identity import base
@@ -32,7 +30,6 @@ class AccessInfoPlugin(base.BaseIdentityPlugin):
if using the AUTH_INTERFACE with get_endpoint. (optional)
"""
- @positional()
def __init__(self, auth_ref, auth_url=None):
super(AccessInfoPlugin, self).__init__(auth_url=auth_url,
reauthenticate=False)
diff --git a/keystoneclient/auth/identity/base.py b/keystoneclient/auth/identity/base.py
index b20d3e2..53a8408 100644
--- a/keystoneclient/auth/identity/base.py
+++ b/keystoneclient/auth/identity/base.py
@@ -16,7 +16,6 @@ import threading
import warnings
from oslo_config import cfg
-from positional import positional
import six
from keystoneclient import _discover
@@ -366,7 +365,6 @@ class BaseIdentityPlugin(base.BaseAuthPlugin):
def get_project_id(self, session, **kwargs):
return self.get_access(session).project_id
- @positional()
def get_discovery(self, session, url, authenticated=None):
"""Return the discovery object for a URL.
diff --git a/keystoneclient/auth/identity/generic/cli.py b/keystoneclient/auth/identity/generic/cli.py
index 9debf63..de1d748 100644
--- a/keystoneclient/auth/identity/generic/cli.py
+++ b/keystoneclient/auth/identity/generic/cli.py
@@ -11,7 +11,6 @@
# under the License.
from oslo_config import cfg
-from positional import positional
from keystoneclient.auth.identity.generic import password
from keystoneclient import exceptions as exc
@@ -25,7 +24,6 @@ class DefaultCLI(password.Password):
as well as allowing users to override with a custom token and endpoint.
"""
- @positional()
def __init__(self, endpoint=None, token=None, **kwargs):
super(DefaultCLI, self).__init__(**kwargs)
diff --git a/keystoneclient/auth/identity/generic/password.py b/keystoneclient/auth/identity/generic/password.py
index 873e253..ddcdba8 100644
--- a/keystoneclient/auth/identity/generic/password.py
+++ b/keystoneclient/auth/identity/generic/password.py
@@ -11,7 +11,6 @@
# under the License.
from oslo_config import cfg
-from positional import positional
from keystoneclient import _discover
from keystoneclient.auth.identity.generic import base
@@ -42,7 +41,6 @@ class Password(base.BaseGenericPlugin):
"""
- @positional()
def __init__(self, auth_url, username=None, user_id=None, password=None,
user_domain_id=None, user_domain_name=None, **kwargs):
super(Password, self).__init__(auth_url=auth_url, **kwargs)
diff --git a/keystoneclient/auth/identity/v2.py b/keystoneclient/auth/identity/v2.py
index 6a403dc..add1da4 100644
--- a/keystoneclient/auth/identity/v2.py
+++ b/keystoneclient/auth/identity/v2.py
@@ -14,7 +14,6 @@ import abc
import logging
from oslo_config import cfg
-from positional import positional
import six
from keystoneclient import access
@@ -49,7 +48,6 @@ class Auth(base.BaseIdentityPlugin):
return options
- @positional()
def __init__(self, auth_url,
trust_id=None,
tenant_id=None,
@@ -128,7 +126,6 @@ class Password(Auth):
:raises TypeError: if a user_id or username is not provided.
"""
- @positional(4)
def __init__(self, auth_url, username=_NOT_PASSED, password=None,
user_id=_NOT_PASSED, **kwargs):
super(Password, self).__init__(auth_url, **kwargs)
diff --git a/keystoneclient/auth/identity/v3/base.py b/keystoneclient/auth/identity/v3/base.py
index 3576045..51d16ea 100644
--- a/keystoneclient/auth/identity/v3/base.py
+++ b/keystoneclient/auth/identity/v3/base.py
@@ -15,7 +15,6 @@ import json
import logging
from oslo_config import cfg
-from positional import positional
import six
from keystoneclient import access
@@ -47,7 +46,6 @@ class BaseAuth(base.BaseIdentityPlugin):
token. (optional) default True.
"""
- @positional()
def __init__(self, auth_url,
trust_id=None,
domain_id=None,