(root: ZarrGroup, parent: str = "/")
| 1865 | |
| 1866 | |
| 1867 | def _iter_zarr_groups(root: ZarrGroup, parent: str = "/") -> Iterable[str]: |
| 1868 | parent_nodepath = NodePath(parent) |
| 1869 | yield str(parent_nodepath) |
| 1870 | for path, group in root.groups(): |
| 1871 | gpath = parent_nodepath / path |
| 1872 | yield from _iter_zarr_groups(group, parent=str(gpath)) |
| 1873 | |
| 1874 | |
| 1875 | def _get_open_params( |
no test coverage detected
searching dependent graphs…