Skip to content

Commit

Permalink
Fix a glitch of ruff formatter
Browse files Browse the repository at this point in the history
  • Loading branch information
FrancescAlted committed Oct 2, 2024
1 parent 3cf9ac2 commit 461bb84
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/blosc2/proxy.py
Original file line number Diff line number Diff line change
Expand Up @@ -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"
)


Expand Down Expand Up @@ -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"
)


Expand Down

0 comments on commit 461bb84

Please sign in to comment.