Browse Source

fix minor formatting failure

pull/1094/head
Ross McFarland 2 years ago
parent
commit
fa56dfaffd
No known key found for this signature in database GPG Key ID: 943B179E15D3B22A
1 changed files with 1 additions and 2 deletions
  1. +1
    -2
      octodns/processor/filter.py

+ 1
- 2
octodns/processor/filter.py 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:


Loading…
Cancel
Save