diff options
| author | Navid Pustchi <npustchi@gmail.com> | 2016-04-23 06:48:46 +0000 |
|---|---|---|
| committer | Navid Pustchi <npustchi@gmail.com> | 2016-04-23 17:47:25 +0000 |
| commit | 20e23f3e0dfb8853d39eedacd19f8c4f8a434fca (patch) | |
| tree | 1be597b34b43a618994aebe3066100688059a322 /keystoneclient/auth | |
| parent | 946e928b5285a4994c4ef365b43295bdd90c9961 (diff) | |
| download | python-keystoneclient-20e23f3e0dfb8853d39eedacd19f8c4f8a434fca.tar.gz | |
Fix D400 PEP257 violation.
Currently tox ignores D400.
D400: First line should end with a period.
This change removes it and make keystoneclient docstrings compliant with it.
Change-Id: I29ecb4c58bb03c0b9a3be0b7a74d18fb06a350f2
Diffstat (limited to 'keystoneclient/auth')
| -rw-r--r-- | keystoneclient/auth/base.py | 2 | ||||
| -rw-r--r-- | keystoneclient/auth/identity/v3/federated.py | 4 |
2 files changed, 4 insertions, 2 deletions
diff --git a/keystoneclient/auth/base.py b/keystoneclient/auth/base.py index 1387222..a8dfc13 100644 --- a/keystoneclient/auth/base.py +++ b/keystoneclient/auth/base.py @@ -351,7 +351,7 @@ class BaseAuthPlugin(object): @classmethod def load_from_options_getter(cls, getter, **kwargs): - """Load a plugin from a getter function that returns appropriate values + """Load a plugin from a getter function returning appropriate values. To handle cases other than the provided CONF and CLI loading you can specify a custom loader function that will be queried for the option diff --git a/keystoneclient/auth/identity/v3/federated.py b/keystoneclient/auth/identity/v3/federated.py index fbe086b..97d83e8 100644 --- a/keystoneclient/auth/identity/v3/federated.py +++ b/keystoneclient/auth/identity/v3/federated.py @@ -27,7 +27,9 @@ class FederatedBaseAuth(base.BaseAuth): rescoping_plugin = token.Token def __init__(self, auth_url, identity_provider, protocol, **kwargs): - """Class constructor accepting following parameters: + """Class constructor for federated authentication plugins. + + Accepting following parameters: :param auth_url: URL of the Identity Service :type auth_url: string |
