(item_id: int, item: Item = Body(embed=True))
| 13 | |
| 14 | @app.put("/items/{item_id}") |
| 15 | async def update_item(item_id: int, item: Item = Body(embed=True)): |
| 16 | results = {"item_id": item_id, "item": item} |
| 17 | return results |
nothing calls this directly
no test coverage detected
searching dependent graphs…