Skip to content

Commit

Permalink
backticks
Browse files Browse the repository at this point in the history
  • Loading branch information
jrbourbeau committed Jun 1, 2023
1 parent 40ea696 commit 451e441
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions distributed/client.py
Expand Up @@ -5254,15 +5254,15 @@ class as_completed:
complete
with_results: bool (False)
Whether to wait and include results of futures as well;
in this case `as_completed` yields a tuple of (future, result)
in this case ``as_completed`` yields a tuple of (future, result)
raise_errors: bool (True)
Whether we should raise when the result of a future raises an
exception; only affects behavior when `with_results=True`.
exception; only affects behavior when ``with_results=True``.
timeout: int (optional)
The returned iterator raises a ``dask.distributed.TimeoutError``
if `__next__()` or `__anext__()` is called and the result
if ``__next__()`` or ``__anext__()`` is called and the result
isn't available after timeout seconds from the original call to
`as_completed()`. If timeout is not specified or None, there is no limit
``as_completed()``. If timeout is not specified or ``None``, there is no limit
to the wait time.
Examples
Expand Down

0 comments on commit 451e441

Please sign in to comment.