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 1831f20 commit a427a16Copy full SHA for a427a16
tests/test_array.py
@@ -1479,4 +1479,4 @@ async def test_sharding_coordinate_selection() -> None:
1479
shards=(2, 4, 4),
1480
)
1481
arr[:] = np.arange(2 * 3 * 4).reshape((2, 3, 4))
1482
- 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