summaryrefslogtreecommitdiff
path: root/keystoneclient/auth
diff options
context:
space:
mode:
authorNavid Pustchi <npustchi@gmail.com>2016-04-23 03:19:58 +0000
committerNavid Pustchi <npustchi@gmail.com>2016-04-23 06:25:20 +0000
commit946e928b5285a4994c4ef365b43295bdd90c9961 (patch)
tree7e535845a5be75af7b0f2cae1e96186385e34c32 /keystoneclient/auth
parentc0893709305260fa1d2df967e973363db614624d (diff)
downloadpython-keystoneclient-946e928b5285a4994c4ef365b43295bdd90c9961.tar.gz
Fix D401 PEP257 violation.
Currently tox ignores D401. 401: First line should be in imperative mood. This change removes it and make keystoneclient docstrings compliant with it. Change-Id: If34ff12d18390b357342cf29f2d116dd3c86a44d
Diffstat (limited to 'keystoneclient/auth')
-rw-r--r--keystoneclient/auth/identity/generic/base.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/keystoneclient/auth/identity/generic/base.py b/keystoneclient/auth/identity/generic/base.py
index b34d186..84171e4 100644
--- a/keystoneclient/auth/identity/generic/base.py
+++ b/keystoneclient/auth/identity/generic/base.py
@@ -114,14 +114,14 @@ class BaseGenericPlugin(base.BaseIdentityPlugin):
@property
def _v2_params(self):
- """Parameters that are common to v2 plugins."""
+ """Return parameters that are common to v2 plugins."""
return {'trust_id': self._trust_id,
'tenant_id': self._project_id,
'tenant_name': self._project_name}
@property
def _v3_params(self):
- """Parameters that are common to v3 plugins."""
+ """Return parameters that are common to v3 plugins."""
return {'trust_id': self._trust_id,
'project_id': self._project_id,
'project_name': self._project_name,