Skip to content

Commit 5fda260

Browse files
committed
chore: remove type: ignores
1 parent 92754be commit 5fda260

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

tests/test_sync_codec_pipeline.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@
1717
from zarr.core.dtype import get_data_type_from_native_dtype
1818

1919

20-
class AsyncOnlyCodec(ArrayBytesCodec): # type: ignore[misc]
20+
class AsyncOnlyCodec(ArrayBytesCodec):
2121
"""A codec that only supports async, for testing rejection of non-sync codecs."""
2222

2323
is_fixed_size = True
@@ -129,7 +129,7 @@ def test_compute_encoded_size(
129129
def test_encode_returns_none_propagation() -> None:
130130
"""When an AA codec returns None, encode short-circuits and returns None."""
131131

132-
class NoneReturningAACodec(TransposeCodec): # type: ignore[misc]
132+
class NoneReturningAACodec(TransposeCodec):
133133
"""An ArrayArrayCodec that always returns None from encode."""
134134

135135
def _encode_sync(self, chunk_array: NDBuffer, chunk_spec: ArraySpec) -> NDBuffer | None:

0 commit comments

Comments
 (0)