File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff 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 )
You can’t perform that action at this time.
0 commit comments