Skip to content

Commit 36c73d2

Browse files
author
luoshasha
committed
fix: remove cli default value to make test happy.
1 parent 6dc0745 commit 36c73d2

File tree

1 file changed

+1
-3
lines changed

1 file changed

+1
-3
lines changed

mcp_run_python/_cli.py

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -27,9 +27,7 @@ def cli_logic(args_list: Sequence[str] | None = None) -> int:
2727
)
2828
parser.add_argument('--port', type=int, help='Port to run the server on, default 3001.')
2929
parser.add_argument('--deps', '--dependencies', help='Comma separated list of dependencies to install')
30-
parser.add_argument(
31-
'--disable-networking', action='store_true', help='Disable networking during execution of python code'
32-
)
30+
parser.add_argument( '--disable-networking', action='store_true', help='Disable networking during execution of python code' )
3331
parser.add_argument('--verbose', action='store_true', help='Enable verbose logging')
3432
parser.add_argument('--version', action='store_true', help='Show version and exit')
3533
parser.add_argument(

0 commit comments

Comments
 (0)