(task_id: str)
| 240 | |
| 241 | |
| 242 | def run_get_task(task_id: str) -> str: |
| 243 | try: |
| 244 | return get_task(task_id) |
| 245 | except FileNotFoundError: |
| 246 | return f"Error: Task {task_id} not found" |
| 247 | |
| 248 | |
| 249 | def run_claim_task(task_id: str) -> str: |
nothing calls this directly
no test coverage detected