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 ebb6c6d commit 40f337fCopy full SHA for 40f337f
tests/test_array.py
@@ -1434,4 +1434,4 @@ async def test_sharding_coordinate_selection() -> None:
1434
shards=(2, 4, 4),
1435
)
1436
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()
+ assert (arr[1, [0, 1]] == np.array([[12, 13, 14, 15], [16, 17, 18, 19]])).all() # type: ignore[index]
0 commit comments