(args: dict)
| 35 | """ |
| 36 | |
| 37 | def handle_task_create(args: dict) -> str: |
| 38 | task = task_board.create_task( |
| 39 | description=args["description"], |
| 40 | parent_id=args.get("parent_task_id"), |
| 41 | ) |
| 42 | return f"Created {task.id}: {task.description}" |
| 43 | |
| 44 | def handle_task_update(args: dict) -> str: |
| 45 | try: |
nothing calls this directly
no test coverage detected