File tree Expand file tree Collapse file tree 2 files changed +3
-3
lines changed Expand file tree Collapse file tree 2 files changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -698,7 +698,7 @@ async def _create(
698698 overwrite = overwrite ,
699699 )
700700 else :
701- raise ValueError (f"Insupported zarr_format. Got: { zarr_format } " )
701+ raise ValueError (f"zarr_format must be 2 or 3, got { zarr_format } " ) # pragma: no cover
702702
703703 if data is not None :
704704 # insert user-provided data
Original file line number Diff line number Diff line change @@ -173,8 +173,8 @@ def iter_grid(
173173 return itertools .product (* (dimensions ))
174174
175175 else :
176- msg = f"Indexing order { order } is not supported at this time." # type: ignore[unreachable]
177- raise NotImplementedError (msg )
176+ msg = f"Indexing order { order } is not supported at this time." # type: ignore[unreachable] # pragma: no cover
177+ raise NotImplementedError (msg ) # pragma: no cover
178178
179179
180180def iter_regions (
You can’t perform that action at this time.
0 commit comments