We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 0fa1674 commit 30e6910Copy full SHA for 30e6910
1 file changed
src/deploydiff/cli.py
@@ -86,8 +86,8 @@ def mcp():
86
try:
87
from click_to_mcp import serve_stdio
88
except ImportError:
89
- typer.echo("Error: click-to-mcp is required for MCP support. Install with: pip install click-to-mcp", err=True)
90
- raise typer.Exit(code=1)
+ click.echo("Error: click-to-mcp is required for MCP support. Install with: pip install click-to-mcp", err=True)
+ raise click.Exit(code=1)
91
serve_stdio(main, name="deploydiff")
92
93
0 commit comments