summaryrefslogtreecommitdiff
path: root/keystoneclient/base.py
diff options
context:
space:
mode:
authorNavid Pustchi <npustchi@gmail.com>2016-05-03 18:08:31 +0000
committerNavid Pustchi <npustchi@gmail.com>2016-05-04 19:30:03 +0000
commita9adca02dbdbf786dd7015f4d3c67c514d757423 (patch)
tree75ba605bba406d61de5967f49f6b50c5d35b16ec /keystoneclient/base.py
parente9471bdf4cb96816ff551cde6b6fdc1e9cb00d3e (diff)
downloadpython-keystoneclient-a9adca02dbdbf786dd7015f4d3c67c514d757423.tar.gz
Fixing D204, D205, and D207 PEP257 violation.
Currently tox ignores D204, D205, and D207. D204: 1 blank required after class docstring. D205: Blank line required between one-line summary and description. D207: Docstring is under-indented. This change removes D204, D205, and D207 ignores in tox and fix violations. Change-Id: Id20d216fbd7647d468859b960088aac61c582d9b
Diffstat (limited to 'keystoneclient/base.py')
-rw-r--r--keystoneclient/base.py2
1 files changed, 2 insertions, 0 deletions
diff --git a/keystoneclient/base.py b/keystoneclient/base.py
index ddd97fa..803df15 100644
--- a/keystoneclient/base.py
+++ b/keystoneclient/base.py
@@ -86,6 +86,7 @@ class Manager(object):
:param client: instance of BaseClient descendant for HTTP requests
"""
+
resource_class = None
def __init__(self, client):
@@ -293,6 +294,7 @@ class CrudManager(Manager):
refer to an individual member of the collection.
"""
+
collection_key = None
key = None
base_url = None