From 461bb84a4dea40b1c754c245e575e90b4d4cad63 Mon Sep 17 00:00:00 2001 From: Francesc Alted Date: Wed, 2 Oct 2024 10:24:53 +0200 Subject: [PATCH] Fix a glitch of ruff formatter --- src/blosc2/proxy.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/blosc2/proxy.py b/src/blosc2/proxy.py index 0f5a3e62..bd531432 100644 --- a/src/blosc2/proxy.py +++ b/src/blosc2/proxy.py @@ -96,7 +96,7 @@ async def aget_chunk(self, nchunk: int) -> bytes: `aget_chunk` method. """ raise NotImplementedError( - "aget_chunk is only available if the source has an" " async aget_chunk method" + "aget_chunk is only available if the source has an async aget_chunk method" ) @@ -176,7 +176,7 @@ async def aget_chunk(self, nchunk: int) -> bytes: `aget_chunk` method. """ raise NotImplementedError( - "aget_chunk is only available if the source has an" " async aget_chunk method" + "aget_chunk is only available if the source has an async aget_chunk method" )