Coverage for docs_src / extra_models / tutorial005_py310.py: 100%

5 statements  

« prev     ^ index     » next       coverage.py v7.13.3, created at 2026-02-12 18:15 +0000

1from fastapi import FastAPI 1abc

2 

3app = FastAPI() 1abc

4 

5 

6@app.get("/keyword-weights/", response_model=dict[str, float]) 1abc

7async def read_keyword_weights(): 1abc

8 return {"foo": 2.3, "bar": 3.4} 1def