(self, container_id: str)
| 1952 | self.containers = self |
| 1953 | |
| 1954 | def get(self, container_id: str) -> object: |
| 1955 | _ = container_id |
| 1956 | if isinstance(self._container, BaseException): |
| 1957 | raise self._container |
| 1958 | return self._container |
| 1959 | |
| 1960 | |
| 1961 | class _PositionalOnlyMissingDockerClient: |
no outgoing calls
no test coverage detected