Skip to content

Commit fccf4bf

Browse files
author
Alexander Brinkman
committed
1 file reformatted
1 parent 7e13484 commit fccf4bf

1 file changed

Lines changed: 5 additions & 3 deletions

File tree

usbipd.py

Lines changed: 5 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -260,13 +260,15 @@ def main() -> None:
260260
)
261261

262262
# Start command
263-
start_parser = subparsers.add_parser("start", help="Start the USBIP server with bound devices")
263+
start_parser = subparsers.add_parser(
264+
"start", help="Start the USBIP server with bound devices"
265+
)
264266
start_group = start_parser.add_mutually_exclusive_group()
265267
start_group.add_argument(
266268
"-4",
267269
help="Bind to IPv4 only (defaults to dual-stack)",
268270
dest="ipv4_only",
269-
action="store_true"
271+
action="store_true",
270272
)
271273
start_group.add_argument(
272274
"--host",
@@ -286,7 +288,7 @@ def main() -> None:
286288
elif args.command == "unbind":
287289
command_unbind(bus_id=args.bus_id, unbind_all=args.unbind_all)
288290
elif args.command == "start":
289-
command_start(host=args.host,ipv4_only=args.ipv4_only)
291+
command_start(host=args.host, ipv4_only=args.ipv4_only)
290292
else:
291293
parser.print_help()
292294
sys.exit(1)

0 commit comments

Comments
 (0)