From 500da902450b416a395b11421843cf1c9a0d29f5 Mon Sep 17 00:00:00 2001 From: Bill Prin Date: Thu, 18 Aug 2016 11:25:55 -0700 Subject: [PATCH] Remove *s from kwargs in docstrings Gives this error: http://stackoverflow.com/questions/30454549/a-literal-in-restructuredtext --- gcloud/datastore/client.py | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/gcloud/datastore/client.py b/gcloud/datastore/client.py index 2778ac029e61..42e858d3e6f7 100644 --- a/gcloud/datastore/client.py +++ b/gcloud/datastore/client.py @@ -468,9 +468,9 @@ def query(self, **kwargs): >>> connection.run_query('project', query.to_protobuf()) [], cursor, more_results, skipped_results - :type **kwargs: dict - :param **kwargs: Parameters for initializing and instance of - :class:`gcloud.datastore.query.Query`. + :type kwargs: dict + :param kwargs: Parameters for initializing and instance of + :class:`gcloud.datastore.query.Query`. :rtype: :class:`gcloud.datastore.query.Query` :returns: An instance of :class:`gcloud.datastore.query.Query`