mirror of
https://github.com/github/octodns.git
synced 2024-05-11 05:55:00 +00:00
Implement black formatting
This commit is contained in:
@@ -3,8 +3,12 @@
|
||||
Octo-DNS Validator
|
||||
'''
|
||||
|
||||
from __future__ import absolute_import, division, print_function, \
|
||||
unicode_literals
|
||||
from __future__ import (
|
||||
absolute_import,
|
||||
division,
|
||||
print_function,
|
||||
unicode_literals,
|
||||
)
|
||||
|
||||
from logging import WARN
|
||||
|
||||
@@ -15,8 +19,11 @@ from octodns.manager import Manager
|
||||
def main():
|
||||
parser = ArgumentParser(description=__doc__.split('\n')[1])
|
||||
|
||||
parser.add_argument('--config-file', required=True,
|
||||
help='The Manager configuration file to use')
|
||||
parser.add_argument(
|
||||
'--config-file',
|
||||
required=True,
|
||||
help='The Manager configuration file to use',
|
||||
)
|
||||
|
||||
args = parser.parse_args(WARN)
|
||||
|
||||
|
||||
Reference in New Issue
Block a user