Skip to content

Commit 4ff5673

Browse files
committed
Export minimal set of identifiers to Python lib.
1 parent 351c33a commit 4ff5673

File tree

1 file changed

+8
-1
lines changed

1 file changed

+8
-1
lines changed

python_examples/btpy.py

Lines changed: 8 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,14 @@
44
Top-level module of the BehaviorTree.CPP Python bindings.
55
"""
66

7-
from btpy_cpp import * # re-export
7+
# re-export
8+
from btpy_cpp import (
9+
BehaviorTreeFactory,
10+
NodeStatus,
11+
StatefulActionNode,
12+
SyncActionNode,
13+
Tree,
14+
)
815

916

1017
def ports(inputs=[], outputs=[]):

0 commit comments

Comments
 (0)