1
0
mirror of https://github.com/github/octodns.git synced 2024-05-11 05:55:00 +00:00

fix minor formatting failure

This commit is contained in:
Ross McFarland
2023-11-09 11:34:16 -08:00
parent 010e5039cc
commit fa56dfaffd

View File

@@ -144,8 +144,7 @@ class _NetworkValueBaseFilter(BaseProcessor):
ips = [ip_address(value) for value in record.values]
if any(
ip in network
for ip, network in product(ips, self.networks)
ip in network for ip, network in product(ips, self.networks)
):
self.matches(zone, record)
else: