File tree Expand file tree Collapse file tree 1 file changed +8
-1
lines changed Expand file tree Collapse file tree 1 file changed +8
-1
lines changed Original file line number Diff line number Diff line change @@ -1360,7 +1360,8 @@ def group(
1360
1360
synchronizer = None ,
1361
1361
path = None ,
1362
1362
* ,
1363
- zarr_version = None
1363
+ zarr_version = None ,
1364
+ meta_array = None
1364
1365
):
1365
1366
"""Create a group.
1366
1367
@@ -1382,6 +1383,11 @@ def group(
1382
1383
Array synchronizer.
1383
1384
path : string, optional
1384
1385
Group path within store.
1386
+ meta_array : array-like, optional
1387
+ An array instance to use for determining arrays to create and return
1388
+ to users. Use `numpy.empty(())` by default.
1389
+
1390
+ .. versionadded:: 2.16.1
1385
1391
1386
1392
Returns
1387
1393
-------
@@ -1432,6 +1438,7 @@ def group(
1432
1438
synchronizer = synchronizer ,
1433
1439
path = path ,
1434
1440
zarr_version = zarr_version ,
1441
+ meta_array = meta_array ,
1435
1442
)
1436
1443
1437
1444
You can’t perform that action at this time.
0 commit comments