()
| 100 | |
| 101 | |
| 102 | async def failing_async_command(): |
| 103 | # Commands now use context manager, no tool_manager parameter |
| 104 | from mcp_cli.context import get_context |
| 105 | |
| 106 | get_context() |
| 107 | raise RuntimeError("Command failure") |
| 108 | |
| 109 | |
| 110 | # --------------------------------------------------------------------------- # |
nothing calls this directly
no test coverage detected