Returns the tasks submitted to EE by the current user. These include all currently running tasks as well as recently canceled or failed tasks. Returns: A list of Tasks.
()
| 191 | |
| 192 | @staticmethod |
| 193 | def list() -> list[Task]: |
| 194 | """Returns the tasks submitted to EE by the current user. |
| 195 | |
| 196 | These include all currently running tasks as well as recently canceled or |
| 197 | failed tasks. |
| 198 | |
| 199 | Returns: |
| 200 | A list of Tasks. |
| 201 | """ |
| 202 | return list(map(_transform_operation_to_task, data.listOperations())) |
| 203 | |
| 204 | def __repr__(self) -> str: |
| 205 | """Returns a string representation of the task.""" |