Skip to content

Commit

Permalink
NDB: Fix sneaky bug in Sphinx docs build. (#7123)
Browse files Browse the repository at this point in the history
  • Loading branch information
Chris Rossi committed Jan 14, 2019
1 parent 9a3db03 commit 4a0131b
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions ndb/src/google/cloud/ndb/tasklets.py
Original file line number Diff line number Diff line change
Expand Up @@ -394,7 +394,7 @@ def wait_any(futures):
"""Wait for any of several futures to finish.
Args:
futures (Sequence[Future]): The futures to wait on.
futures (typing.Sequence[Future]): The futures to wait on.
Returns:
Future: The first future to be found to have finished.
Expand All @@ -414,7 +414,7 @@ def wait_all(futures):
"""Wait for all of several futures to finish.
Args:
futures (Sequence[Future]): The futures to wait on.
futures (typing.Sequence[Future]): The futures to wait on.
"""
if not futures:
return
Expand Down

0 comments on commit 4a0131b

Please sign in to comment.