(self)
| 114 | self._update_session_id_from_transport() |
| 115 | |
| 116 | async def _close_client(self): |
| 117 | if self._client: |
| 118 | await self._client.__aexit__(None, None, None) |
| 119 | self._client = None |
| 120 | |
| 121 | def close(self): |
| 122 | """Public method to clean up the client""" |