File tree Expand file tree Collapse file tree 1 file changed +5
-3
lines changed
Expand file tree Collapse file tree 1 file changed +5
-3
lines changed Original file line number Diff line number Diff line change @@ -228,7 +228,10 @@ def launch(
228228 raise click .ClickException (f"Launch failed: { str (e )} " ) from e
229229
230230
231- @cli .command ("batch-launch" , help = "Launch multiple models in a batch, separate model names with spaces." )
231+ @cli .command (
232+ "batch-launch" ,
233+ help = "Launch multiple models in a batch, separate model names with spaces." ,
234+ )
232235@click .argument ("model-names" , type = str , nargs = - 1 )
233236@click .option (
234237 "--batch-config" ,
@@ -476,7 +479,6 @@ def cleanup_logs_cli(
476479) -> None :
477480 """Clean up log files based on optional filters.
478481
479-
480482 Parameters
481483 ----------
482484 log_dir : str or Path, optional
@@ -491,7 +493,7 @@ def cleanup_logs_cli(
491493 If provided, only delete logs with job ID less than this value.
492494 dry_run : bool
493495 If True, return matching files without deleting them.
494- """
496+ """
495497 try :
496498 client = VecInfClient ()
497499 matched = client .cleanup_logs (
You can’t perform that action at this time.
0 commit comments