Skip to content

Commit ba2c4cf

Browse files
committed
lint
1 parent da64194 commit ba2c4cf

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

tests/benchmarks/test_e2e.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -61,7 +61,7 @@ def test_write_array(
6161
shape=layout.shape,
6262
chunks=layout.chunks,
6363
shards=layout.shards,
64-
compressors=compressors[compression_name],
64+
compressors=compressors[compression_name], # type: ignore[arg-type]
6565
fill_value=0,
6666
)
6767

@@ -83,7 +83,7 @@ def test_read_array(
8383
shape=layout.shape,
8484
chunks=layout.chunks,
8585
shards=layout.shards,
86-
compressors=compressors[compression_name],
86+
compressors=compressors[compression_name], # type: ignore[arg-type]
8787
fill_value=0,
8888
)
8989
arr[:] = 1

0 commit comments

Comments
 (0)