Closed HojaeAhn closed 2 years ago
Currently expose function just displays the result image path and returns only command finish as command.info(PATH=path_dict) return command.finish()
command.info(PATH=path_dict)
return command.finish()
I suggest putting the upper line as the return value. return command.finish(PATH=path_dict)
return command.finish(PATH=path_dict)
It displays same thing as before, and the other actor can use this path information additionally from send_command.
send_command
Currently expose function just displays the result image path and returns only command finish as
command.info(PATH=path_dict)
return command.finish()
I suggest putting the upper line as the return value.
return command.finish(PATH=path_dict)
It displays same thing as before, and the other actor can use this path information additionally from
send_command
.