summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDouglas Mendizabal <douglas.mendizabal@rackspace.com>2014-06-12 08:28:21 -0500
committerDouglas Mendizabal <douglas.mendizabal@rackspace.com>2014-06-12 08:28:21 -0500
commit8e9897adfc25c98ef12dbbac1b7f884647ae0768 (patch)
tree505ca8491211eeae6d1c20bbd0e8d8bdbe9dcc2e
parent01d23227b0fa2b17038dfb3710e700b553778e15 (diff)
downloadpython-barbicanclient-8e9897adfc25c98ef12dbbac1b7f884647ae0768.tar.gz
Move docstring inside relevant class
Per PEP 257 docstrings should be the first statement inside the class. Change-Id: I5cbfc928b56ba8a967ce187a38d966de04f1954c
-rw-r--r--barbicanclient/common/auth.py12
1 files changed, 5 insertions, 7 deletions
diff --git a/barbicanclient/common/auth.py b/barbicanclient/common/auth.py
index 2944f28..508ca18 100644
--- a/barbicanclient/common/auth.py
+++ b/barbicanclient/common/auth.py
@@ -27,15 +27,13 @@ import six
LOG = logging.getLogger(__name__)
-"""
-This class is for backward compatibility only and is an
-adapter for using barbican style auth_plugin in place of
-the recommended keystone auth_plugin.
-"""
-
class KeystoneAuthPluginWrapper(BaseAuthPlugin):
-
+ """
+ This class is for backward compatibility only and is an
+ adapter for using barbican style auth_plugin in place of
+ the recommended keystone auth_plugin.
+ """
def __init__(self, barbican_auth_plugin):
self.barbican_auth_plugin = barbican_auth_plugin