Skip to content

Commit 40f337f

Browse files
committed
ignore typing error in test
1 parent ebb6c6d commit 40f337f

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
@@ -1434,4 +1434,4 @@ async def test_sharding_coordinate_selection() -> None:
14341434
shards=(2, 4, 4),
14351435
)
14361436
arr[:] = np.arange(2 * 3 * 4).reshape((2, 3, 4))
1437-
assert (arr[1, [0, 1]] == np.array([[12, 13, 14, 15], [16, 17, 18, 19]])).all()
1437+
assert (arr[1, [0, 1]] == np.array([[12, 13, 14, 15], [16, 17, 18, 19]])).all() # type: ignore[index]

0 commit comments

Comments
 (0)