Skip to content

Commit 7765723

Browse files
committed
add type: ignore statement
1 parent df4889b commit 7765723

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

tests/test_array.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1156,7 +1156,7 @@ async def test_default_filters_compressors(
11561156
if default_compressors is None:
11571157
expected_compressors = ()
11581158
else:
1159-
expected_compressors = (expected_compressors,)
1159+
expected_compressors = (expected_compressors,) # type: ignore[assignment]
11601160
expected_serializer = None
11611161
else:
11621162
raise ValueError(f"Invalid zarr_format: {zarr_format}")

0 commit comments

Comments
 (0)