Skip to content

Commit 125b659

Browse files
authored
Merge branch 'main' into features/docs-multimodal
2 parents 54c4f2f + 27c0187 commit 125b659

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/guidellm/__main__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -422,7 +422,7 @@ def run(**kwargs): # noqa: C901
422422

423423
# Handle output path remapping
424424
if (output_path := kwargs.pop("output_path", None)) is not None:
425-
if kwargs.get("outputs_dir", None) is not None:
425+
if kwargs.get("output_dir", None) is not None:
426426
raise click.BadParameter("Cannot use --output-path with --output-dir.")
427427
path = Path(output_path)
428428
if path.is_dir():

0 commit comments

Comments
 (0)