Skip to content

Commit 0f50859

Browse files
committed
remove unnecessary argument
1 parent adbcd43 commit 0f50859

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/test/java/dev/zarr/zarrjava/zarrita_write.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@
2323
raise ValueError(f"Invalid {codec=}")
2424

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

2929
a = zarrita.Array.create(

0 commit comments

Comments
 (0)