Skip to content

Commit

Permalink
Fix typo (#2382)
Browse files Browse the repository at this point in the history
Co-authored-by: Joe Hamman <joe@earthmover.io>
  • Loading branch information
DimitriPapadopoulos and jhamman authored Oct 15, 2024
1 parent 41a567e commit 77976c8
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 77976c8

Please sign in to comment.