| 52 | |
| 53 | @dataclass |
| 54 | class Task: |
| 55 | id: str |
| 56 | subject: str |
| 57 | description: str |
| 58 | status: str # pending | in_progress | completed |
| 59 | owner: str | None |
| 60 | blockedBy: list[str] |
| 61 | |
| 62 | |
| 63 | def _task_path(task_id: str) -> Path: |
no outgoing calls
no test coverage detected