OperationcodeCreatorAgent:ソース:flow:FlowAppendRespons.py

from flow.FlowResponsListBase import FlowResponsListBase

class FlowAppendRespons(FlowResponsListBase):
    def __init__(self, respons):
        super().__init__()
        self.set_category("flow")
        self.set_type("append_respons")

    def run(self, command=None, pre_respons=None, flow_data=None):
        type(super()).respons_list.append(pre_respons)
        return "", ""