diff options
| author | Morgan Fainberg <morgan.fainberg@gmail.com> | 2017-08-07 13:13:31 -0700 |
|---|---|---|
| committer | Morgan Fainberg <morgan.fainberg@gmail.com> | 2017-08-07 13:14:55 -0700 |
| commit | 4a43aa02b86e3203bb6614382ef598926a1464cb (patch) | |
| tree | d4382b1c9460778afda33621af978c2c3bec3edf /keystoneclient/utils.py | |
| parent | 5d0c29fc912caf18e78e6e153d3af4e554dfb0de (diff) | |
| download | python-keystoneclient-4a43aa02b86e3203bb6614382ef598926a1464cb.tar.gz | |
Remove use of positional decorator
The positional decorator results in poorly maintainable code in
a misguided effort to emulate python3's key-word-arg only notation
and functionality. This patch removes keystoneclient's dependance
on the positional decorator.
Change-Id: I9e691cc8b0c04992f4a8dabd67e1b413d3220d23
Diffstat (limited to 'keystoneclient/utils.py')
| -rw-r--r-- | keystoneclient/utils.py | 3 |
1 files changed, 0 insertions, 3 deletions
diff --git a/keystoneclient/utils.py b/keystoneclient/utils.py index 8e8dd7c..67609e1 100644 --- a/keystoneclient/utils.py +++ b/keystoneclient/utils.py @@ -16,9 +16,6 @@ import sys from keystoneauth1 import exceptions as ksa_exceptions from oslo_utils import timeutils -# NOTE(stevemar): do not remove positional. We need this to stay for a while -# since versions of auth_token require it here. -from positional import positional # noqa import six from keystoneclient import exceptions as ksc_exceptions |
