Skip to content

Commit

Permalink
Fix python formatting
Browse files Browse the repository at this point in the history
  • Loading branch information
franzpoeschel committed Nov 2, 2020
1 parent 8aad1ce commit d7240d2
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion test/python/unittest/API/APITest.py
Original file line number Diff line number Diff line change
Expand Up @@ -1527,7 +1527,8 @@ def makeAvailableChunksRoundTrip(self, ext):
DS = io.Dataset
E_x = write.iterations[0].meshes["E"]["x"]
E_x.reset_dataset(DS(np.dtype("int"), [10, 4]))
data = np.array([[2, 4, 6, 8], [10, 12, 14 , 16]], dtype=np.dtype("int"))
data = np.array(
[[2, 4, 6, 8], [10, 12, 14, 16]], dtype=np.dtype("int"))
E_x.store_chunk(data, [1, 0], [2, 4])
data = np.array([[2, 4], [6, 8], [10, 12]], dtype=np.dtype("int"))
E_x.store_chunk(data, [4, 2], [3, 2])
Expand Down

0 comments on commit d7240d2

Please sign in to comment.