OperationcodeCreatorAgent:ソース:flow:FlowContinue.py

from flow.FlowBase import FlowBase


class FlowContinue(FlowBase):
    def __init__(self,):
        super().__init__()
        self.set_category("flow")
        self.set_type("continue")

    def run(self, command=None, pre_respons=None, flow_data=None):

        return "continue", pre_respons