Coverage for docs_src / body_nested_models / tutorial009_py310.py: 100%
5 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 fastapi import FastAPI 1abc
3app = FastAPI() 1abc
6@app.post("/index-weights/") 1abc
7async def create_index_weights(weights: dict[int, float]): 1abc
8 return weights 1def