Source code for peek_plugin_base.simple_subproc.simple_subproc_task_call_tuple

from typing import Any

from vortex.Tuple import Tuple
from vortex.Tuple import TupleField
from vortex.Tuple import addTupleType


[docs]@addTupleType class SimpleSubprocTaskCallTuple(Tuple): __tablename__ = "SimpleSubprocTaskCallTuple" __tupleType__ = "peek_plugin_base." + __tablename__ # Subprocess fields commandUuid: str = TupleField() # Call arguments kwargs: dict[str, Any] = TupleField()