sparse-bear-77456
04/11/2024, 8:59 PMtask = run[step_name][task_id] however, I can only manually find the task_id from the UI, wondering if there is a way to get all the task_ids from code.dry-beach-38304
04/11/2024, 9:59 PMfor task in run[step_name]:
print(task.id)
should work. You can basically iterate over all the tasks in a step that way (the task is a Task object).sparse-bear-77456
04/11/2024, 10:13 PMsparse-bear-77456
04/11/2024, 10:13 PMdry-beach-38304
04/11/2024, 10:18 PM