(args: dict)
| 53 | return f"Error: {e}" |
| 54 | |
| 55 | def handle_task_list(args: dict) -> str: |
| 56 | return task_board.get_summary() |
| 57 | |
| 58 | def handle_ask_user(args: dict) -> str: |
| 59 | return user_input_fn(args["question"], args.get("options")) |
nothing calls this directly
no test coverage detected