Coverage for docs_src / body_nested_models / tutorial009_py310.py: 100%
5 statements
« prev ^ index » next coverage.py v7.13.3, created at 2026-04-06 01:24 +0000
« prev ^ index » next coverage.py v7.13.3, created at 2026-04-06 01:24 +0000
1from fastapi import FastAPI 1abcdef
3app = FastAPI() 1abcdef
6@app.post("/index-weights/") 1abcdef
7async def create_index_weights(weights: dict[int, float]): 1abcdef
8 return weights 1ghij