Skip to content

Commit c082751

Browse files
committed
docs: Update docstring examples
1 parent ca20716 commit c082751

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

bigtree/tree/search.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -177,7 +177,7 @@ def find_relative_path(tree: NodeT, path_name: str) -> NodeT:
177177
- If path name starts with leading separator symbol, it will start at root node.
178178
179179
Examples:
180-
>>> from bigtree import find_relative_path, str_to_tree
180+
>>> from bigtree import Node, find_relative_path
181181
>>> root = Node("a", age=90)
182182
>>> b = Node("b", age=65, parent=root)
183183
>>> c = Node("c", age=60, parent=root)

0 commit comments

Comments
 (0)