From 772f28996a0e67edc3e6f2045f3b00aa63cd496f Mon Sep 17 00:00:00 2001 From: Seshu Yamajala Date: Fri, 24 Sep 2021 14:43:46 -0700 Subject: [PATCH] Add output terminal to export box. --- ami/flowchart/library/Operators.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/ami/flowchart/library/Operators.py b/ami/flowchart/library/Operators.py index a22cbc9..04da1a6 100644 --- a/ami/flowchart/library/Operators.py +++ b/ami/flowchart/library/Operators.py @@ -346,7 +346,8 @@ class Export(CtrlNode): uiTemplate = [('alias', 'text')] def __init__(self, name): - super().__init__(name, terminals={"In": {'io': 'in', 'ttype': Any}}, + super().__init__(name, terminals={"In": {'io': 'in', 'ttype': Any}, + "Out": {'io': 'out', 'ttype': Any}}, exportable=True)