summaryrefslogtreecommitdiff
path: root/keystoneclient
diff options
context:
space:
mode:
authorRushi Agrawal <rushi.agr@gmail.com>2015-12-16 14:09:40 +0530
committerRushi Agrawal <rushi.agr@gmail.com>2015-12-16 14:09:40 +0530
commit9822135f00485304925328d32ff9edf291d90efc (patch)
tree0482e4915e807614271e4a832f394e40b06568f9 /keystoneclient
parent063f17265ab82ff77f96098a3f86718418811d90 (diff)
downloadpython-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.py2
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