(message: Message)
| 303 | raise NotImplementedError("Should not be called!") |
| 304 | |
| 305 | async def send(message: Message) -> None: |
| 306 | if message["type"] == "http.response.body": |
| 307 | if not message.get("more_body", False): # pragma: no branch |
| 308 | response_complete.set() |
| 309 | |
| 310 | await app(scope, receive, send) |
| 311 |
no test coverage detected