Build a client from the ``CMDOP_*`` environment variables.
(cls)
| 50 | |
| 51 | async def __aenter__(self) -> Client: |
| 52 | return self |
| 53 | |
| 54 | async def __aexit__(self, *exc: Any) -> None: |
| 55 | await self.aclose() |
| 56 | |
| 57 | async def aclose(self) -> None: |
nothing calls this directly
no outgoing calls
no test coverage detected