(self)
| 135 | |
| 136 | print("Example 7") |
| 137 | async def __aenter__(self): |
| 138 | loop = asyncio.get_event_loop() |
| 139 | await loop.run_in_executor(None, self.start) |
| 140 | return self |
| 141 | |
| 142 | async def __aexit__(self, *_): |
| 143 | await self.stop() |
nothing calls this directly
no outgoing calls
no test coverage detected