blob: 52a82944650bae06b05b6cb8603689209bb46d0b [file] [log] [blame]
from pywy.wayangplan.base import WyOperator
from pywy.platforms.python.channels import Channel
class PythonExecutionOperator(WyOperator):
def prefix(self) -> str:
return 'Py'
def execute(self, inputs: Channel, output: Channel):
pass