Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
Co-authored-by: Joe Hamman <joe@earthmover.io>
  • Loading branch information
2 people authored and d-v-b committed Oct 18, 2024
1 parent 39e68aa commit fc96b91
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/zarr/core/sync.py
Original file line number Diff line number Diff line change
Expand Up @@ -133,7 +133,7 @@ def sync(

finished, unfinished = wait([future], return_when=asyncio.ALL_COMPLETED, timeout=timeout)
if len(unfinished) > 0:
raise TimeoutError(f"Coroutine {coro} failed to finish in within {timeout} s")
raise TimeoutError(f"Coroutine {coro} failed to finish within {timeout} s")
assert len(finished) == 1
return_result = next(iter(finished)).result()

Expand Down

0 comments on commit fc96b91

Please sign in to comment.