Skip to content

Commit 77976c8

Browse files
Fix typo (#2382)
Co-authored-by: Joe Hamman <joe@earthmover.io>
1 parent 41a567e commit 77976c8

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/zarr/core/sync.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -133,7 +133,7 @@ def sync(
133133

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

0 commit comments

Comments
 (0)