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

Move the doc string to the class and remove the redundant __init__ override.

This commit is contained in:
Nikolay Denev
2021-11-29 10:03:59 +00:00
parent ed35c76791
commit 772f289085

View File

@@ -11,24 +11,22 @@ from .base import BaseProcessor
class AwsAcmMangingProcessor(BaseProcessor):
log = getLogger('AwsAcmMangingProcessor')
'''
processors:
awsacm:
class: octodns.processor.acme.AwsAcmMangingProcessor
def __init__(self, name):
'''
processors:
awsacm:
class: octodns.processor.acme.AwsAcmMangingProcessor
...
zones:
something.com.:
...
processors:
- awsacm
...
'''
zones:
something.com.:
...
processors:
- awsacm
...
'''
super(AwsAcmMangingProcessor, self).__init__(name)
log = getLogger('AwsAcmMangingProcessor')
def _ignore_awsacm_cnames(self, zone):
for r in zone.records: