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:
@@ -11,9 +11,6 @@ from .base import BaseProcessor
|
|||||||
|
|
||||||
|
|
||||||
class AwsAcmMangingProcessor(BaseProcessor):
|
class AwsAcmMangingProcessor(BaseProcessor):
|
||||||
log = getLogger('AwsAcmMangingProcessor')
|
|
||||||
|
|
||||||
def __init__(self, name):
|
|
||||||
'''
|
'''
|
||||||
processors:
|
processors:
|
||||||
awsacm:
|
awsacm:
|
||||||
@@ -28,7 +25,8 @@ class AwsAcmMangingProcessor(BaseProcessor):
|
|||||||
- awsacm
|
- awsacm
|
||||||
...
|
...
|
||||||
'''
|
'''
|
||||||
super(AwsAcmMangingProcessor, self).__init__(name)
|
|
||||||
|
log = getLogger('AwsAcmMangingProcessor')
|
||||||
|
|
||||||
def _ignore_awsacm_cnames(self, zone):
|
def _ignore_awsacm_cnames(self, zone):
|
||||||
for r in zone.records:
|
for r in zone.records:
|
||||||
|
|||||||
Reference in New Issue
Block a user