(self)
| 1248 | return self._execute().__await__() |
| 1249 | |
| 1250 | async def __aiter__(self) -> AsyncIterator[MODEL]: |
| 1251 | for val in await self: |
| 1252 | yield val |
| 1253 | |
| 1254 | async def _execute(self) -> list[MODEL]: |
| 1255 | instance_list = await self._db.executor_class( |
nothing calls this directly
no outgoing calls
no test coverage detected