(args: dict)
| 42 | return f"Created {task.id}: {task.description}" |
| 43 | |
| 44 | def handle_task_update(args: dict) -> str: |
| 45 | try: |
| 46 | task = task_board.update_task( |
| 47 | task_id=args["task_id"], |
| 48 | status=args.get("status"), |
| 49 | result_summary=args.get("result_summary"), |
| 50 | ) |
| 51 | return f"Updated {task.id}: status={task.status.value}" |
| 52 | except ValueError as e: |
| 53 | return f"Error: {e}" |
| 54 | |
| 55 | def handle_task_list(args: dict) -> str: |
| 56 | return task_board.get_summary() |
nothing calls this directly
no test coverage detected