-
Notifications
You must be signed in to change notification settings - Fork 24
Open
Labels
bugSomething isn't workingSomething isn't working
Description
Registered tasks don't appear in the GUI even though they are appearing in get_registered_tasks().
Excerpt from my code:
if __name__ == "__main__":
from judo.cli import app
from judo.tasks import get_registered_tasks, register_task
register_task("umv_task", UMV, UMVTaskConfig)
tasks = get_registered_tasks()
print("Registered tasks:")
for task_name, task_class in tasks.items():
print(task_name)
app()The output:
Registered tasks:
cylinder_push
cartpole
fr3_pick
leap_cube
leap_cube_down
caltech_leap_cube
umv_task
started dora coordinator
started dora daemonIn the GUI task dropdown, "umv_task" is not an option.
Reactions are currently unavailable
Metadata
Metadata
Assignees
Labels
bugSomething isn't workingSomething isn't working