fix: return type

This commit is contained in:
Jason Liu
2024-03-07 22:49:15 -05:00
parent 405ba5af5b
commit 4e1ece9742
+1 -1
View File
@@ -13,7 +13,7 @@ app.add_typer(hub.app, name="hub", help="Interact with the instructor hub")
@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.
"""