Skip to content

Commit bec947e

Browse files
Apply ruff rule RUF022
RUF022 `__all__` is not sorted
1 parent 90f2d22 commit bec947e

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

numcodecs/zarr3.py

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,9 @@
4141
if zarr.__version__ < "3.0.0": # pragma: no cover
4242
raise ImportError("zarr 3.0.0 or later is required to use the numcodecs zarr integration.")
4343
except ImportError as e: # pragma: no cover
44-
raise ImportError("zarr 3.0.0 or later is required to use the numcodecs zarr integration.") from e
44+
raise ImportError(
45+
"zarr 3.0.0 or later is required to use the numcodecs zarr integration."
46+
) from e
4547

4648
from zarr.abc.codec import ArrayArrayCodec, ArrayBytesCodec, BytesBytesCodec
4749
from zarr.abc.metadata import Metadata

0 commit comments

Comments
 (0)