(self)
| 11 | |
| 12 | class AsyncCLICommandBase(ABC): |
| 13 | def __init__(self) -> None: |
| 14 | self._container: Container | None = None |
| 15 | self._log: Log | None = None |
| 16 | |
| 17 | def initialize_container(self) -> None: |
| 18 | from src.core.di.container import Container |
nothing calls this directly
no outgoing calls
no test coverage detected