(self: Self)
| 359 | return response |
| 360 | |
| 361 | async def __aenter__(self: Self) -> Self: |
| 362 | querystring = self.query.querystrings[0] |
| 363 | template, template_args = querystring.compile_string() |
| 364 | |
| 365 | self._cursor = await self.connection.execute(template, *template_args) |
| 366 | return self |
| 367 | |
| 368 | async def __aexit__(self, exception_type, exception, traceback): |
| 369 | await self.cursor.close() |
nothing calls this directly
no test coverage detected