(self)
| 1441 | self.query = self.query.use_index(*self._use_indexes) |
| 1442 | |
| 1443 | def __await__(self) -> Generator[Any, None, bool]: |
| 1444 | self._choose_db_if_not_chosen() |
| 1445 | self._make_query() |
| 1446 | return self._execute().__await__() |
| 1447 | |
| 1448 | async def _execute( |
| 1449 | self, |
nothing calls this directly
no test coverage detected