Skip to content

Commit 46e8722

Browse files
committed
reformat with black
1 parent 3f44fd8 commit 46e8722

File tree

1 file changed

+3
-5
lines changed

1 file changed

+3
-5
lines changed

tests/test_v3.py

+3-5
Original file line numberDiff line numberDiff line change
@@ -455,12 +455,10 @@ async def test_transpose(
455455
"transpose_zarr/0.0"
456456
)
457457

458+
458459
@pytest.mark.parametrize("order", [[1, 2, 0], [1, 2, 3, 0], [3, 2, 4, 0, 1]])
459-
def test_transpose_non_self_inverse(
460-
store: Store,
461-
order
462-
):
463-
shape = [i+3 for i in range(len(order))]
460+
def test_transpose_non_self_inverse(store: Store, order):
461+
shape = [i + 3 for i in range(len(order))]
464462
data = np.arange(0, np.prod(shape), dtype="uint16").reshape(shape)
465463
a = Array.create(
466464
store / "transpose_non_self_inverse",

0 commit comments

Comments
 (0)