Return full task details as JSON.
(task_id: str)
| 91 | |
| 92 | |
| 93 | def get_task(task_id: str) -> str: |
| 94 | """Return full task details as JSON.""" |
| 95 | task = load_task(task_id) |
| 96 | return json.dumps(asdict(task), indent=2) |
| 97 | |
| 98 | |
| 99 | def can_start(task_id: str) -> bool: |
no test coverage detected