Skip to content

Commit fb5876c

Browse files
committed
remove debug info
1 parent 16165ef commit fb5876c

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

example_auto_nodes/node_base/auto_node.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -72,7 +72,8 @@ def cook(self):
7272

7373

7474
def run(self):
75-
print("RUN {} Node".format(self.name()))
75+
pass
76+
#print("RUN {} Node".format(self.name()))
7677

7778
def on_input_connected(self, to_port, from_port):
7879
if self.checkPortType(to_port, from_port):
@@ -86,7 +87,6 @@ def on_input_disconnected(self, to_port, from_port):
8687
self.needCook = True
8788
return
8889
self.cook()
89-
print("cook")
9090

9191
def set_disabled(self, mode=False):
9292
super(AutoNode, self).set_disabled(mode)

0 commit comments

Comments
 (0)