Skip to content

Commit 1df9818

Browse files
cguardiaandrewsg
andauthored
docs: fix return type in fetch docstring (#594)
fixes: #576 Co-authored-by: Andrew Gorcester <gorcester@google.com>
1 parent b5713c8 commit 1df9818

File tree

1 file changed

+1
-1
lines changed
  • packages/google-cloud-ndb/google/cloud/ndb

1 file changed

+1
-1
lines changed

packages/google-cloud-ndb/google/cloud/ndb/query.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1731,7 +1731,7 @@ def fetch(self, limit=None, **kwargs):
17311731
values for some of these arguments.
17321732
17331733
Returns:
1734-
List([model.Model]): The query results.
1734+
List[Union[model.Model, key.Key]]: The query results.
17351735
"""
17361736
return self.fetch_async(_options=kwargs["_options"]).result()
17371737

0 commit comments

Comments
 (0)