diff --git a/octodns/processor/filter.py b/octodns/processor/filter.py index 183f173..3157101 100644 --- a/octodns/processor/filter.py +++ b/octodns/processor/filter.py @@ -280,6 +280,9 @@ class ValueAllowlistFilter(_ValueBaseFilter, AllowsMixin): - route53 ''' + def __init__(self, name, allowlist): + super().__init__(name, allowlist) + class ValueRejectlistFilter(_ValueBaseFilter, RejectsMixin): '''Reject managing records with names that match the provider patterns @@ -313,6 +316,9 @@ class ValueRejectlistFilter(_ValueBaseFilter, RejectsMixin): - route53 ''' + def __init__(self, name, rejectlist): + super().__init__(name, rejectlist) + class _NetworkValueBaseFilter(BaseProcessor): def __init__(self, name, _list):