(id, type, status, description="")
| 25 | |
| 26 | |
| 27 | def _task(id, type, status, description=""): |
| 28 | return SimpleNamespace(id=id, type=type, status=status, description=description) |
| 29 | |
| 30 | |
| 31 | def _ctx(tmp_path, *, ui=None, tasks=None, tool_context="__default__"): |
no outgoing calls
no test coverage detected