Coverage for docs_src/body_nested_models/tutorial009.py: 100%
6 statements
« prev ^ index » next coverage.py v7.6.1, created at 2025-05-05 00:03 +0000
« prev ^ index » next coverage.py v7.6.1, created at 2025-05-05 00:03 +0000
1from typing import Dict 1abcdef
3from fastapi import FastAPI 1abcdef
5app = FastAPI() 1abcdef
8@app.post("/index-weights/") 1abcdef
9async def create_index_weights(weights: Dict[int, float]): 1abcdef
10 return weights 1ghijkl