Skip to content

Commit d5cd484

Browse files
committed
fix typing
1 parent 48b754a commit d5cd484

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

tests/test_dtype_registry.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -80,7 +80,7 @@ def test_match_dtype(
8080
def test_match_dtype_string_na_object_error(
8181
data_type_registry_fixture: DataTypeRegistry,
8282
) -> None:
83-
dtype = np.dtypes.StringDType(na_object=None)
83+
dtype: np.dtype[Any] = np.dtypes.StringDType(na_object=None) # type: ignore[call-arg]
8484
with pytest.raises(ValueError, match=r"Zarr data type resolution from StringDType.*failed"):
8585
data_type_registry_fixture.match_dtype(dtype)
8686

0 commit comments

Comments
 (0)