We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 1cce865 commit 80cec26Copy full SHA for 80cec26
numcodecs/zarr3.py
@@ -41,7 +41,9 @@
41
if zarr.__version__ < "3.0.0": # pragma: no cover
42
raise ImportError("zarr 3.0.0 or later is required to use the numcodecs zarr integration.")
43
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
+ raise ImportError(
45
+ "zarr 3.0.0 or later is required to use the numcodecs zarr integration."
46
+ ) from e
47
48
from zarr.abc.codec import ArrayArrayCodec, ArrayBytesCodec, BytesBytesCodec
49
from zarr.abc.metadata import Metadata
0 commit comments