diff options
| author | Rushi Agrawal <rushi.agr@gmail.com> | 2015-12-16 14:09:40 +0530 |
|---|---|---|
| committer | Rushi Agrawal <rushi.agr@gmail.com> | 2015-12-16 14:09:40 +0530 |
| commit | 9822135f00485304925328d32ff9edf291d90efc (patch) | |
| tree | 0482e4915e807614271e4a832f394e40b06568f9 /keystoneclient | |
| parent | 063f17265ab82ff77f96098a3f86718418811d90 (diff) | |
| download | python-keystoneclient-9822135f00485304925328d32ff9edf291d90efc.tar.gz | |
Docstring: Mark optional parameter as optional.
In client.Client, providing version number is optional. So write
'(optional)' in the docstring describing this parameter.
Change-Id: I5e355515de8d043bda85b5abf43c549b4ba22d61
Diffstat (limited to 'keystoneclient')
| -rw-r--r-- | keystoneclient/client.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/keystoneclient/client.py b/keystoneclient/client.py index 762b90b..5da9794 100644 --- a/keystoneclient/client.py +++ b/keystoneclient/client.py @@ -40,7 +40,7 @@ def Client(version=None, unstable=False, session=None, **kwargs): specified the client will be selected such that the major version is equivalent and an endpoint provides at least the specified minor version. For example to - specify the 3.1 API use ``(3, 1)``. + specify the 3.1 API use ``(3, 1)``. (optional) :param bool unstable: Accept endpoints not marked as 'stable'. (optional) :param session: A session object to be used for communication. If one is not provided it will be constructed from the provided |
