Skip to content

Commit

Permalink
Remove unused type ignores (#951)
Browse files Browse the repository at this point in the history
  • Loading branch information
bdraco authored Sep 9, 2024
1 parent 71ebae8 commit be2a3a3
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions aioesphomeapi/host_resolver.py
Original file line number Diff line number Diff line change
Expand Up @@ -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


Expand Down

0 comments on commit be2a3a3

Please sign in to comment.