summaryrefslogtreecommitdiff
path: root/keystoneclient/base.py
diff options
context:
space:
mode:
authorBrant Knudson <bknudson@us.ibm.com>2014-10-11 16:20:54 -0500
committerBrant Knudson <bknudson@us.ibm.com>2014-12-04 19:04:15 -0600
commit3c8d35247ebfc57663f363ba9522da27b8748262 (patch)
tree9608b4b767be52d66416f2e869a95424f3b2623e /keystoneclient/base.py
parentcc0c93fc0c4c5d0240a5a96c57f1fd62988ee6aa (diff)
downloadpython-keystoneclient-3c8d35247ebfc57663f363ba9522da27b8748262.tar.gz
Correct documenting constructor parameters
When the docs are rendered to HTML, any docs on __init__ are not displayed. The parameters to the constructor have to be documented on the class rather than on the __init__ method. Also, corrected other minor issues in the same areas. Change-Id: Ic56da33f6b99fe5efb636c289e3c4e1569f0c84c
Diffstat (limited to 'keystoneclient/base.py')
-rw-r--r--keystoneclient/base.py7
1 files changed, 3 insertions, 4 deletions
diff --git a/keystoneclient/base.py b/keystoneclient/base.py
index 316b79e..81d5e26 100644
--- a/keystoneclient/base.py
+++ b/keystoneclient/base.py
@@ -79,14 +79,13 @@ class Manager(object):
Managers interact with a particular type of API (servers, flavors, images,
etc.) and provide CRUD operations for them.
+
+ :param client: instance of BaseClient descendant for HTTP requests
+
"""
resource_class = None
def __init__(self, client):
- """Initializes Manager with `client`.
-
- :param client: instance of BaseClient descendant for HTTP requests
- """
super(Manager, self).__init__()
self.client = client