Skip to content

Commit

Permalink
Add output terminal to export box.
Browse files Browse the repository at this point in the history
  • Loading branch information
syamajala committed Sep 24, 2021
1 parent d56775a commit 772f289
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion ami/flowchart/library/Operators.py
Original file line number Diff line number Diff line change
Expand Up @@ -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)


Expand Down

0 comments on commit 772f289

Please sign in to comment.