(label_file_list)
| 7 | from shared.database.task.job.job import Job |
| 8 | |
| 9 | def rebuild_label_map(label_file_list): |
| 10 | colour_map = {} |
| 11 | for label_file in label_file_list: |
| 12 | colour_map[label_file.id] = label_file.colour |
| 13 | |
| 14 | return colour_map |
| 15 | |
| 16 | |
| 17 | def task_template_label_attach(session, |
no outgoing calls
no test coverage detected