(self: ValuesQuery[Any])
| 1865 | return self._execute().__await__() # pylint: disable=E1101 |
| 1866 | |
| 1867 | async def __aiter__(self: ValuesQuery[Any]) -> AsyncIterator[dict[str, Any]]: |
| 1868 | for val in await self: |
| 1869 | yield val |
| 1870 | |
| 1871 | async def _execute(self) -> list[dict] | dict: |
| 1872 | result = await self._db.execute_query_dict(*self.query.get_parameterized_sql()) |
nothing calls this directly
no outgoing calls
no test coverage detected