Skip to content

Commit

Permalink
fix: return type
Browse files Browse the repository at this point in the history
  • Loading branch information
jxnl committed Mar 8, 2024
1 parent 405ba5a commit 4e1ece9
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion instructor/cli/cli.py
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@


@app.command()
def docs(query: str = typer.Argument(None, help="Search the documentation")):
def docs(query: str = typer.Argument(None, help="Search the documentation")) -> None:
"""
Open the instructor documentation website.
"""
Expand Down

0 comments on commit 4e1ece9

Please sign in to comment.