Removes a task and deletes all of its assets
(self, uuid)
| 174 | return task.cancel() |
| 175 | |
| 176 | def remove_task(self, uuid): |
| 177 | """ |
| 178 | Removes a task and deletes all of its assets |
| 179 | """ |
| 180 | api_client = self.api_client() |
| 181 | task = api_client.get_task(uuid) |
| 182 | return task.remove() |
| 183 | |
| 184 | def download_task_assets(self, uuid, destination, progress_callback, parallel_downloads=16): |
| 185 | """ |