Skip to content

Commit 2f1d95a

Browse files
committed
document tree future changes
1 parent f13bc56 commit 2f1d95a

File tree

2 files changed

+10
-0
lines changed

2 files changed

+10
-0
lines changed

zarr/convenience.py

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -403,6 +403,11 @@ def tree(grp, expand=False, level=None):
403403
--------
404404
zarr.hierarchy.Group.tree
405405
406+
Notes
407+
-----
408+
Please note that the behaviour of this function is still evolving and the
409+
default output and/or parameters may change in future versions.
410+
406411
"""
407412

408413
return TreeViewer(grp, expand=expand, level=level)

zarr/hierarchy.py

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -603,6 +603,11 @@ def tree(self, expand=False, level=None):
603603
└── quux
604604
└── baz (100,) float64
605605
606+
Notes
607+
-----
608+
Please note that the behaviour of this function is still evolving and the
609+
default output and/or parameters may change in future versions.
610+
606611
"""
607612

608613
return TreeViewer(self, expand=expand, level=level)

0 commit comments

Comments
 (0)