diff --git a/docs_src/path_params/tutorial003_py310.py b/docs_src/path_params/tutorial003_py310.py index 5f0aa09234..18af9a8474 100644 --- a/docs_src/path_params/tutorial003_py310.py +++ b/docs_src/path_params/tutorial003_py310.py @@ -4,10 +4,10 @@ app = FastAPI() @app.get("/users/me") -async def read_user_me(): +async def read_user_me() -> dict: return {"user_id": "the current user"} @app.get("/users/{user_id}") -async def read_user(user_id: str): +async def read_user(user_id: str) -> dict: return {"user_id": user_id}