(*, extra_arg: str | None = None)
| 91 | |
| 92 | |
| 93 | def dummy_sync_command(*, extra_arg: str | None = None): |
| 94 | # Commands now use context manager, no tool_manager parameter |
| 95 | from mcp_cli.context import get_context |
| 96 | |
| 97 | get_context() |
| 98 | suffix = "" if extra_arg is None else f"-{extra_arg}" |
| 99 | return f"ok{suffix}" |
| 100 | |
| 101 | |
| 102 | async def failing_async_command(): |
nothing calls this directly
no test coverage detected