(request: Request)
| 39 | |
| 40 | |
| 41 | async def read_body_and_raise_exc(request: Request) -> None: |
| 42 | await request.body() |
| 43 | raise BadBodyException(422) |
| 44 | |
| 45 | |
| 46 | async def handler_that_reads_body(request: Request, exc: BadBodyException) -> JSONResponse: |
nothing calls this directly
no test coverage detected