(self)
| 28 | |
| 29 | @property |
| 30 | def log(self) -> "Log": |
| 31 | if self._log is None: |
| 32 | raise RuntimeError("Logger not initialized. Call initialize_container() first.") |
| 33 | return self._log |
| 34 | |
| 35 | @abstractmethod |
| 36 | async def execute(self, loop: asyncio.AbstractEventLoop) -> int: |
no outgoing calls
no test coverage detected