Skip to content

Commit

Permalink
remove unnecessary argument
Browse files Browse the repository at this point in the history
  • Loading branch information
brokkoli71 committed May 22, 2024
1 parent adbcd43 commit 0f50859
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/test/java/dev/zarr/zarrjava/zarrita_write.py
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@
raise ValueError(f"Invalid {codec=}")

store = zarrita.LocalStore(sys.argv[2])
testdata = np.arange(0, 16 * 16, dtype='int32').reshape((16, 16))
testdata = np.arange(16 * 16, dtype='int32').reshape((16, 16))
print(f"{codec=}")

a = zarrita.Array.create(
Expand Down

0 comments on commit 0f50859

Please sign in to comment.