(
environ: WSGIEnvironment, start_response: StartResponse
)
| 230 | """ |
| 231 | |
| 232 | def application( |
| 233 | environ: WSGIEnvironment, start_response: StartResponse |
| 234 | ) -> t.Iterable[bytes]: |
| 235 | return ClosingIterator(app(environ, start_response), self.cleanup) |
| 236 | |
| 237 | return application |
| 238 |
nothing calls this directly
no test coverage detected