()
| 20 | |
| 21 | |
| 22 | def raise_after_yield() -> Any: |
| 23 | yield |
| 24 | raise HTTPException(status_code=503, detail="Exception after yield") |
| 25 | |
| 26 | |
| 27 | SessionFuncDep = Annotated[Session, Depends(dep_session, scope="function")] |
nothing calls this directly
no test coverage detected
searching dependent graphs…