From 4e1ece97429e7af7389f0a93796f372a7195eb1b Mon Sep 17 00:00:00 2001 From: Jason Liu Date: Thu, 7 Mar 2024 22:49:15 -0500 Subject: [PATCH] fix: return type --- instructor/cli/cli.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/instructor/cli/cli.py b/instructor/cli/cli.py index bbccb04d6..c3b8af56e 100644 --- a/instructor/cli/cli.py +++ b/instructor/cli/cli.py @@ -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. """