Skip to content
Snippets Groups Projects
Commit f1288d41 authored by phil's avatar phil Committed by Guillaume Valadon
Browse files

Made message argument of pipe's _trigger() method optional

parent ac05492e
No related branches found
No related tags found
No related merge requests found
......@@ -237,7 +237,7 @@ class Pipe(_ConnectorLogic):
def _high_send(self, msg):
for s in self.high_sinks:
s.high_push(msg)
def _trigger(self, msg):
def _trigger(self, msg=None):
for s in self.trigger_sinks:
s.on_trigger(msg)
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment