Coverage for docs_src/body_nested_models/tutorial009_py39.py: 100%

5 statements  

« prev     ^ index     » next       coverage.py v7.6.1, created at 2025-05-05 00:03 +0000

1from fastapi import FastAPI 1abcde

2 

3app = FastAPI() 1abcde

4 

5 

6@app.post("/index-weights/") 1abcde

7async def create_index_weights(weights: dict[int, float]): 1abcde

8 return weights 1fghij