Commit ef499f19 by fwkz

@multi decorator will not return anything.

parent 0a3593c0
......@@ -132,7 +132,7 @@ def multi(fn):
self.target = original_target
self.port = original_port
file_handler.close()
return fn(self, *args, **kwargs)
return # Nothing to return, ran multiple times.
else:
return fn(self, *args, **kwargs)
return wrapper
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment