Skip to content

Commit 99cc8f5

Browse files
committed
tuple -> list
1 parent d7bb121 commit 99cc8f5

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/zarr/api/asynchronous.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1027,7 +1027,7 @@ async def create_array(
10271027
compressor, *rest = compressors
10281028
else:
10291029
compressor = None
1030-
rest = ()
1030+
rest = []
10311031
filters = (*filters, *rest)
10321032
if dimension_names is not None:
10331033
raise ValueError("Zarr v2 arrays do not support dimension names.")

0 commit comments

Comments
 (0)