(self)
| 22 | |
| 23 | @property |
| 24 | def container(self) -> "Container": |
| 25 | if self._container is None: |
| 26 | raise RuntimeError("Container not initialized. Call initialize_container() first.") |
| 27 | return self._container |
| 28 | |
| 29 | @property |
| 30 | def log(self) -> "Log": |
nothing calls this directly
no outgoing calls
no test coverage detected