chore(cli): add mypy strict checking (#32386)

Co-authored-by: Mason Daugherty <mason@langchain.dev>
This commit is contained in:
Christophe Bornet
2025-08-30 20:02:45 +02:00
committed by GitHub
parent 444939945a
commit e3c4aeaea1
9 changed files with 70 additions and 48 deletions

View File

@@ -6,7 +6,7 @@ app = FastAPI()
@app.get("/")
async def redirect_root_to_docs():
async def redirect_root_to_docs() -> RedirectResponse:
return RedirectResponse("/docs")