(self)
| 145 | return results, nodes |
| 146 | |
| 147 | async def get_hosts(self) -> list[tuple[str, Any]]: |
| 148 | _, nodes = await self._get_srv_response_and_hosts(True) |
| 149 | return nodes |
| 150 | |
| 151 | async def get_hosts_and_min_ttl(self) -> tuple[list[tuple[str, Any]], int]: |
| 152 | results, nodes = await self._get_srv_response_and_hosts(False) |
no test coverage detected