Skip to content

Commit 3a9b725

Browse files
[pre-commit.ci] Add auto fixes from pre-commit.com hooks
for more information, see https://pre-commit.ci
1 parent 2334865 commit 3a9b725

File tree

1 file changed

+5
-3
lines changed

1 file changed

+5
-3
lines changed

vec_inf/cli/_cli.py

Lines changed: 5 additions & 3 deletions
Original file line numberDiff line numberDiff 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(

0 commit comments

Comments
 (0)