Skip to content

Commit f64507d

Browse files
authored
Merge pull request #2129 from waprin/fix_kwargs
Remove *s from kwargs in docstrings
2 parents d968ae4 + 500da90 commit f64507d

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

gcloud/datastore/client.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -468,9 +468,9 @@ def query(self, **kwargs):
468468
>>> connection.run_query('project', query.to_protobuf())
469469
[<list of Entity Protobufs>], cursor, more_results, skipped_results
470470
471-
:type **kwargs: dict
472-
:param **kwargs: Parameters for initializing and instance of
473-
:class:`gcloud.datastore.query.Query`.
471+
:type kwargs: dict
472+
:param kwargs: Parameters for initializing and instance of
473+
:class:`gcloud.datastore.query.Query`.
474474
475475
:rtype: :class:`gcloud.datastore.query.Query`
476476
:returns: An instance of :class:`gcloud.datastore.query.Query`

0 commit comments

Comments
 (0)