Skip to content

Commit 923fb48

Browse files
committed
push unsaved merges
1 parent c12310d commit 923fb48

File tree

2 files changed

+0
-13
lines changed

2 files changed

+0
-13
lines changed

zarr/creation.py

Lines changed: 0 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -22,11 +22,7 @@ def create(shape, chunks=True, dtype=None, compressor='default',
2222
overwrite=False, path=None, chunk_store=None, filters=None,
2323
cache_metadata=True, cache_attrs=True, read_only=False,
2424
object_codec=None, dimension_separator=None, write_empty_chunks=True,
25-
<<<<<<< HEAD
26-
attrs: Dict[str, Any] = {}, *, zarr_version=None, meta_array=None, **kwargs):
27-
=======
2825
*, zarr_version=None, meta_array=None, storage_transformers=(), **kwargs):
29-
>>>>>>> 385b5d3635618e086eb4752f81c652379751a5ad
3026
"""Create an array.
3127
3228
Parameters
@@ -184,11 +180,7 @@ def create(shape, chunks=True, dtype=None, compressor='default',
184180
init_array(store, shape=shape, chunks=chunks, dtype=dtype, compressor=compressor,
185181
fill_value=fill_value, order=order, overwrite=overwrite, path=path,
186182
chunk_store=chunk_store, filters=filters, object_codec=object_codec,
187-
<<<<<<< HEAD
188-
dimension_separator=dimension_separator, attrs=attrs)
189-
=======
190183
dimension_separator=dimension_separator, storage_transformers=storage_transformers)
191-
>>>>>>> 385b5d3635618e086eb4752f81c652379751a5ad
192184

193185
# instantiate array
194186
z = Array(store, path=path, chunk_store=chunk_store, synchronizer=synchronizer,

zarr/storage.py

Lines changed: 0 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -313,13 +313,8 @@ def init_array(
313313
chunk_store: Optional[StoreLike] = None,
314314
filters=None,
315315
object_codec=None,
316-
<<<<<<< HEAD
317-
dimension_separator: Optional[str] = None,
318-
attrs: Dict[str, Any] = {}
319-
=======
320316
dimension_separator=None,
321317
storage_transformers=(),
322-
>>>>>>> 385b5d3635618e086eb4752f81c652379751a5ad
323318
):
324319
"""Initialize an array store with the given configuration. Note that this is a low-level
325320
function and there should be no need to call this directly from user code.

0 commit comments

Comments
 (0)