Skip to content

Commit

Permalink
fix: remove data out port on flow nodes
Browse files Browse the repository at this point in the history
  • Loading branch information
reddigari committed May 6, 2020
1 parent 56a0892 commit 0ff3d9d
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ class IntegerNode(FlowNode):
"""
name = "Integer Input"
num_in = 0
num_out = 1
num_out = 0
color = 'purple'

OPTIONS = {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ class StringNode(FlowNode):
"""
name = "String Input"
num_in = 0
num_out = 1
num_out = 0
color = 'purple'

OPTIONS = {
Expand Down

0 comments on commit 0ff3d9d

Please sign in to comment.