From adf7f6fb39e5e1415b0033c3179f65ac65c47e21 Mon Sep 17 00:00:00 2001 From: Dimitri Papadopoulos <3234522+DimitriPapadopoulos@users.noreply.github.com> Date: Tue, 15 Oct 2024 19:17:45 +0200 Subject: [PATCH] Fix typo --- src/zarr/core/sync.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/zarr/core/sync.py b/src/zarr/core/sync.py index 8c5bc9c397..f7d4529478 100644 --- a/src/zarr/core/sync.py +++ b/src/zarr/core/sync.py @@ -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()