RoboWaiter/robowaiter/behavior_lib/_base/Sequence.py

11 lines
224 B
Python

import py_trees as ptree
from typing import Any
class Sequence(ptree.composites.Sequence):
print_name = "Sequence"
type = "Sequence"
def __init__(self,*args,**kwargs):
super().__init__(*args,**kwargs)