(app: web.Application)
| 185 | fut = asyncio.get_event_loop().create_future() |
| 186 | |
| 187 | async def cb(app: web.Application) -> None: |
| 188 | await asyncio.sleep(0.001) |
| 189 | fut.set_result(123) |
| 190 | |
| 191 | app.on_cleanup.append(cb) |
| 192 | app.freeze() |
no outgoing calls
no test coverage detected