Get a client from the pool and return it as a context manager.
(self, **kwargs)
| 188 | |
| 189 | @abstractmethod |
| 190 | def __enter__(self, **kwargs) -> ClientArgs: |
| 191 | """Get a client from the pool and return it as a context manager.""" |
| 192 | raise NotImplementedError |
| 193 | |
| 194 | @abstractmethod |
| 195 | def __exit__(self, exc_type, exc_value, exc_traceback) -> bool: |
nothing calls this directly
no outgoing calls
no test coverage detected