mirror of
https://github.com/esphome/aioesphomeapi.git
synced 2024-12-27 17:37:39 +01:00
Remove unused type ignores (#951)
This commit is contained in:
parent
71ebae8c92
commit
be2a3a3934
@ -108,9 +108,9 @@ async def _async_resolve_host_zeroconf(
|
||||
)
|
||||
addrs: list[AddrInfo] = []
|
||||
for ip in info.ip_addresses_by_version(IPVersion.V6Only):
|
||||
addrs.extend(_async_ip_address_to_addrs(ip, port)) # type: ignore
|
||||
addrs.extend(_async_ip_address_to_addrs(ip, port))
|
||||
for ip in info.ip_addresses_by_version(IPVersion.V4Only):
|
||||
addrs.extend(_async_ip_address_to_addrs(ip, port)) # type: ignore
|
||||
addrs.extend(_async_ip_address_to_addrs(ip, port))
|
||||
return addrs
|
||||
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user