9 lines
201 B
Python
9 lines
201 B
Python
|
import py_trees as ptree
|
||
|
from typing import Any
|
||
|
|
||
|
class Selector(ptree.composites.Selector):
|
||
|
print_name = "Selector"
|
||
|
|
||
|
def __init__(self,*args,**kwargs):
|
||
|
super().__init__(*args,**kwargs)
|