From 43402dc1a3dff4d3da22c50b06aa590ac3c19579 Mon Sep 17 00:00:00 2001 From: Davis Bennett Date: Mon, 22 Apr 2024 12:55:16 +0200 Subject: [PATCH] chore: adjust line length for the linter --- src/zarr/v3/sync.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/zarr/v3/sync.py b/src/zarr/v3/sync.py index e557a4ecaa..2838f68172 100644 --- a/src/zarr/v3/sync.py +++ b/src/zarr/v3/sync.py @@ -42,8 +42,8 @@ def _get_lock() -> threading.Lock: async def _runner(coro: Coroutine[Any, Any, T]) -> T | BaseException: """ - Await a coroutine and return the result of running it. If awaiting the coroutine raises an exception, - the exception will be returned. + Await a coroutine and return the result of running it. If awaiting the coroutine raises an + exception, the exception will be returned. """ try: return await coro