Skip to content

Commit 88e46f8

Browse files
author
luoshasha
committed
style: fix code style.
1 parent dc53684 commit 88e46f8

File tree

3 files changed

+163
-199
lines changed

3 files changed

+163
-199
lines changed

mcp_run_python/_cli.py

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,9 @@ 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( '--disable-networking', action='store_true', help='Disable networking during execution of python code' )
30+
parser.add_argument(
31+
'--disable-networking', action='store_true', help='Disable networking during execution of python code'
32+
)
3133
parser.add_argument('--verbose', action='store_true', help='Enable verbose logging')
3234
parser.add_argument('--version', action='store_true', help='Show version and exit')
3335
parser.add_argument(

0 commit comments

Comments
 (0)