Skip to content

Commit e4e990c

Browse files
committed
Fix mypy for Zarr 3.1.3
1 parent 05fa7d8 commit e4e990c

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

cubed/core/plan.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@
2929
try:
3030
from zarr.errors import ArrayNotFoundError # type: ignore
3131
except ImportError:
32-
ArrayNotFoundError = FileNotFoundError # zarr-python 3
32+
ArrayNotFoundError = FileNotFoundError # type: ignore # zarr-python<=3.1.1
3333

3434
# A unique ID with sensible ordering, used for making directory names
3535
CONTEXT_ID = f"cubed-{datetime.now().strftime('%Y%m%dT%H%M%S')}-{uuid.uuid4()}"

0 commit comments

Comments
 (0)