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 48b754a commit d5cd484Copy full SHA for d5cd484
1 file changed
tests/test_dtype_registry.py
@@ -80,7 +80,7 @@ def test_match_dtype(
80
def test_match_dtype_string_na_object_error(
81
data_type_registry_fixture: DataTypeRegistry,
82
) -> None:
83
- dtype = np.dtypes.StringDType(na_object=None)
+ dtype: np.dtype[Any] = np.dtypes.StringDType(na_object=None) # type: ignore[call-arg]
84
with pytest.raises(ValueError, match=r"Zarr data type resolution from StringDType.*failed"):
85
data_type_registry_fixture.match_dtype(dtype)
86
0 commit comments