Skip to content

Commit 56df46e

Browse files
LDeakind-v-b
andauthored
make store keyword-only
Co-authored-by: Davis Bennett <[email protected]>
1 parent c99b8d2 commit 56df46e

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/zarr/core/array.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -192,7 +192,7 @@ def parse_array_metadata(data: Any) -> ArrayMetadata:
192192
raise TypeError # pragma: no cover
193193

194194

195-
def create_codec_pipeline(metadata: ArrayMetadata, store: Store | None = None) -> CodecPipeline:
195+
def create_codec_pipeline(metadata: ArrayMetadata, *, store: Store | None = None) -> CodecPipeline:
196196
if store is not None:
197197
try:
198198
return get_pipeline_class().from_array_metadata_and_store(

0 commit comments

Comments
 (0)