(self, *args)
| 939 | return self |
| 940 | |
| 941 | async def __aexit__(self, *args): |
| 942 | await self.connection.disconnect() |
| 943 | await self.connection_pool.release(self.connection) |
| 944 | |
| 945 | async def next_command(self) -> MonitorCommandInfo: |
| 946 | """Parse the response from a monitor command""" |
nothing calls this directly
no test coverage detected