Skip to content

Commit 29a701d

Browse files
🎨 Auto format
1 parent 57ffbfa commit 29a701d

1 file changed

Lines changed: 1 addition & 3 deletions

File tree

tests/test_type_conversion.py

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -493,9 +493,7 @@ def show(name: str = typer.Option(...)):
493493
pytest.param(Annotated[str, typer.Option(..., resolve_path=True)], "<str>"),
494494
pytest.param(Annotated[Path, typer.Option(...)], "<path>"),
495495
pytest.param(Annotated[Path, typer.Option(..., dir_okay=False)], "<file>"),
496-
pytest.param(
497-
Annotated[Path, typer.Option(..., file_okay=False)], "<dir>"
498-
),
496+
pytest.param(Annotated[Path, typer.Option(..., file_okay=False)], "<dir>"),
499497
pytest.param(Annotated[SomeEnum, typer.Option(...)], "<one|two|three>"),
500498
pytest.param(Annotated[SomeEnum, typer.Argument()], "<one|two|three>"),
501499
pytest.param(Annotated[Literal["x", "y"], typer.Option(...)], "<x|y>"),

0 commit comments

Comments
 (0)