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