Method
__aexit__
(
self,
exc_type: type[BaseException] | None,
exc_value: BaseException | None,
exc_traceback: TracebackType | None,
)
Source from the content-addressed store, hash-verified
| 39 | return self |
| 40 | |
| 41 | async def __aexit__( |
| 42 | self, |
| 43 | exc_type: type[BaseException] | None, |
| 44 | exc_value: BaseException | None, |
| 45 | exc_traceback: TracebackType | None, |
| 46 | ) -> None: |
| 47 | await self.stop() |
| 48 | |
| 49 | async def _wrapper(self) -> None: |
| 50 | """Continuously execute the provided function with the specified delay. |
Callers
nothing calls this directly
Tested by
no test coverage detected