from flow.FlowResponseListBase import FlowResponseListBase
class FlowPrintResponseList(FlowResponseListBase):
def __init__(self, criterion):
super().__init__()
self.set_category("flow")
self.set_type("print_respons_list")
def run(self, command=None, pre_respons=None, flow_data=None):
respons = ""
for data in type(super()).response_list:
respons += data + "\r\n"
return "", respons
