Skip to content

Commit 6b15718

Browse files
committed
Revert removal of linting ignore flag
1 parent 87dd5fc commit 6b15718

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/zarr/core/dtype/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -280,7 +280,7 @@ def parse_dtype(
280280
# First attempt to interpret the input as JSON
281281
if isinstance(dtype_spec, Mapping | str | Sequence):
282282
try:
283-
return get_data_type_from_json(dtype_spec, zarr_format=zarr_format)
283+
return get_data_type_from_json(dtype_spec, zarr_format=zarr_format) # type: ignore[arg-type]
284284
except ValueError:
285285
# no data type matched this JSON-like input
286286
pass

0 commit comments

Comments
 (0)