12 lines
253 B
Python
12 lines
253 B
Python
|
import py_trees as ptree
|
||
|
from typing import Any
|
||
|
|
||
|
|
||
|
class Inverter(ptree.decorators.Inverter):
|
||
|
print_name = "Inverter"
|
||
|
ins_name = "Inverter"
|
||
|
type = "Inverter"
|
||
|
|
||
|
def __init__(self, *args, **kwargs):
|
||
|
super().__init__(*args, **kwargs)
|