Coverage for docs_src / body_multiple_params / tutorial005_an_py310.py: 100%
13 statements
« prev ^ index » next coverage.py v7.13.3, created at 2026-02-12 18:15 +0000
« prev ^ index » next coverage.py v7.13.3, created at 2026-02-12 18:15 +0000
1from typing import Annotated 1abc
3from fastapi import Body, FastAPI 1abc
4from pydantic import BaseModel 1abc
6app = FastAPI() 1abc
9class Item(BaseModel): 1abc
10 name: str 1abc
11 description: str | None = None 1abc
12 price: float 1abc
13 tax: float | None = None 1abc
16@app.put("/items/{item_id}") 1abc
17async def update_item(item_id: int, item: Annotated[Item, Body(embed=True)]): 1abc
18 results = {"item_id": item_id, "item": item} 1defghi
19 return results 1defghi