Remove unless local variable in _connect_resolve_host (#588)

This commit is contained in:
J. Nick Koston 2023-10-17 14:05:39 -10:00 committed by GitHub
parent 9552aea1f7
commit f31b250fe2
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 5 additions and 6 deletions

View File

@ -277,13 +277,12 @@ class APIConnection:
async def _connect_resolve_host(self) -> hr.AddrInfo:
"""Step 1 in connect process: resolve the address."""
try:
coro = hr.async_resolve_host(
self._params.address,
self._params.port,
self._params.zeroconf_instance,
)
async with asyncio_timeout(RESOLVE_TIMEOUT):
return await coro
return await hr.async_resolve_host(
self._params.address,
self._params.port,
self._params.zeroconf_instance,
)
except asyncio_TimeoutError as err:
raise ResolveAPIError(
f"Timeout while resolving IP address for {self.log_name}"