Skip to content

Commit d7240d2

Browse files
committed
Fix python formatting
1 parent 8aad1ce commit d7240d2

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

test/python/unittest/API/APITest.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1527,7 +1527,8 @@ def makeAvailableChunksRoundTrip(self, ext):
15271527
DS = io.Dataset
15281528
E_x = write.iterations[0].meshes["E"]["x"]
15291529
E_x.reset_dataset(DS(np.dtype("int"), [10, 4]))
1530-
data = np.array([[2, 4, 6, 8], [10, 12, 14 , 16]], dtype=np.dtype("int"))
1530+
data = np.array(
1531+
[[2, 4, 6, 8], [10, 12, 14, 16]], dtype=np.dtype("int"))
15311532
E_x.store_chunk(data, [1, 0], [2, 4])
15321533
data = np.array([[2, 4], [6, 8], [10, 12]], dtype=np.dtype("int"))
15331534
E_x.store_chunk(data, [4, 2], [3, 2])

0 commit comments

Comments
 (0)