(self)
| 1033 | return self._async__init__().__await__() |
| 1034 | |
| 1035 | async def __aenter__(self): |
| 1036 | await self._async__init__() |
| 1037 | return self |
| 1038 | |
| 1039 | async def __aexit__(self, *exc): |
| 1040 | await self.close() |
nothing calls this directly
no test coverage detected