diff --git a/octodns/__init__.py b/octodns/__init__.py index f08da5c..4225567 100644 --- a/octodns/__init__.py +++ b/octodns/__init__.py @@ -1,10 +1,3 @@ 'OctoDNS: DNS as code - Tools for managing DNS across multiple providers' -from __future__ import ( - absolute_import, - division, - print_function, - unicode_literals, -) - __VERSION__ = '0.9.19' diff --git a/octodns/cmds/__init__.py b/octodns/cmds/__init__.py index 16a8eb0..407eb4e 100644 --- a/octodns/cmds/__init__.py +++ b/octodns/cmds/__init__.py @@ -1,10 +1,3 @@ # # # - -from __future__ import ( - absolute_import, - division, - print_function, - unicode_literals, -) diff --git a/octodns/cmds/args.py b/octodns/cmds/args.py index 7f04f43..ac00079 100644 --- a/octodns/cmds/args.py +++ b/octodns/cmds/args.py @@ -2,13 +2,6 @@ # # -from __future__ import ( - absolute_import, - division, - print_function, - unicode_literals, -) - from argparse import ArgumentParser as _Base from logging import DEBUG, INFO, WARN, Formatter, StreamHandler, getLogger from logging.handlers import SysLogHandler diff --git a/octodns/cmds/compare.py b/octodns/cmds/compare.py index 818a436..a25bd68 100755 --- a/octodns/cmds/compare.py +++ b/octodns/cmds/compare.py @@ -3,13 +3,6 @@ Octo-DNS Comparator ''' -from __future__ import ( - absolute_import, - division, - print_function, - unicode_literals, -) - from pprint import pprint import sys diff --git a/octodns/cmds/dump.py b/octodns/cmds/dump.py index 5629342..38eaeb9 100755 --- a/octodns/cmds/dump.py +++ b/octodns/cmds/dump.py @@ -3,13 +3,6 @@ Octo-DNS Dumper ''' -from __future__ import ( - absolute_import, - division, - print_function, - unicode_literals, -) - from octodns.cmds.args import ArgumentParser from octodns.manager import Manager diff --git a/octodns/cmds/report.py b/octodns/cmds/report.py index 03a8f11..2bc5fa3 100755 --- a/octodns/cmds/report.py +++ b/octodns/cmds/report.py @@ -3,13 +3,6 @@ Octo-DNS Reporter ''' -from __future__ import ( - absolute_import, - division, - print_function, - unicode_literals, -) - from concurrent.futures import ThreadPoolExecutor from dns.exception import Timeout from dns.resolver import NXDOMAIN, NoAnswer, NoNameservers, Resolver, query diff --git a/octodns/cmds/sync.py b/octodns/cmds/sync.py index 05bc146..6efa4f5 100755 --- a/octodns/cmds/sync.py +++ b/octodns/cmds/sync.py @@ -3,13 +3,6 @@ Octo-DNS Multiplexer ''' -from __future__ import ( - absolute_import, - division, - print_function, - unicode_literals, -) - from octodns.cmds.args import ArgumentParser from octodns.manager import Manager diff --git a/octodns/cmds/validate.py b/octodns/cmds/validate.py index f69c02b..b69f856 100755 --- a/octodns/cmds/validate.py +++ b/octodns/cmds/validate.py @@ -3,13 +3,6 @@ Octo-DNS Validator ''' -from __future__ import ( - absolute_import, - division, - print_function, - unicode_literals, -) - from logging import WARN from octodns.cmds.args import ArgumentParser diff --git a/octodns/cmds/versions.py b/octodns/cmds/versions.py index 2794ee4..59a009e 100755 --- a/octodns/cmds/versions.py +++ b/octodns/cmds/versions.py @@ -3,13 +3,6 @@ octoDNS Versions ''' -from __future__ import ( - absolute_import, - division, - print_function, - unicode_literals, -) - from octodns.cmds.args import ArgumentParser from octodns.manager import Manager diff --git a/octodns/equality.py b/octodns/equality.py index db08a2a..2514d27 100644 --- a/octodns/equality.py +++ b/octodns/equality.py @@ -2,13 +2,6 @@ # # -from __future__ import ( - absolute_import, - division, - print_function, - unicode_literals, -) - class EqualityTupleMixin(object): def _equality_tuple(self): diff --git a/octodns/manager.py b/octodns/manager.py index d33c960..5677e6d 100644 --- a/octodns/manager.py +++ b/octodns/manager.py @@ -2,13 +2,6 @@ # # -from __future__ import ( - absolute_import, - division, - print_function, - unicode_literals, -) - from collections import deque from concurrent.futures import ThreadPoolExecutor from importlib import import_module diff --git a/octodns/processor/__init__.py b/octodns/processor/__init__.py index 16a8eb0..407eb4e 100644 --- a/octodns/processor/__init__.py +++ b/octodns/processor/__init__.py @@ -1,10 +1,3 @@ # # # - -from __future__ import ( - absolute_import, - division, - print_function, - unicode_literals, -) diff --git a/octodns/processor/acme.py b/octodns/processor/acme.py index 2797dba..cab3f16 100644 --- a/octodns/processor/acme.py +++ b/octodns/processor/acme.py @@ -2,13 +2,6 @@ # # -from __future__ import ( - absolute_import, - division, - print_function, - unicode_literals, -) - from logging import getLogger from .base import BaseProcessor diff --git a/octodns/processor/awsacm.py b/octodns/processor/awsacm.py index dcd53f9..68280fe 100644 --- a/octodns/processor/awsacm.py +++ b/octodns/processor/awsacm.py @@ -2,13 +2,6 @@ # Ignores AWS ACM validation CNAME records. # -from __future__ import ( - absolute_import, - division, - print_function, - unicode_literals, -) - from logging import getLogger logger = getLogger('Route53') diff --git a/octodns/processor/base.py b/octodns/processor/base.py index c6c368e..5279af2 100644 --- a/octodns/processor/base.py +++ b/octodns/processor/base.py @@ -2,13 +2,6 @@ # # -from __future__ import ( - absolute_import, - division, - print_function, - unicode_literals, -) - class ProcessorException(Exception): pass diff --git a/octodns/processor/filter.py b/octodns/processor/filter.py index fdbd8ec..256d9f4 100644 --- a/octodns/processor/filter.py +++ b/octodns/processor/filter.py @@ -2,13 +2,6 @@ # # -from __future__ import ( - absolute_import, - division, - print_function, - unicode_literals, -) - from re import compile as re_compile from .base import BaseProcessor diff --git a/octodns/processor/ownership.py b/octodns/processor/ownership.py index 68b7430..083a583 100644 --- a/octodns/processor/ownership.py +++ b/octodns/processor/ownership.py @@ -2,13 +2,6 @@ # # -from __future__ import ( - absolute_import, - division, - print_function, - unicode_literals, -) - from collections import defaultdict from ..provider.plan import Plan diff --git a/octodns/processor/restrict.py b/octodns/processor/restrict.py index 1903995..e585eeb 100644 --- a/octodns/processor/restrict.py +++ b/octodns/processor/restrict.py @@ -2,13 +2,6 @@ # # -from __future__ import ( - absolute_import, - division, - print_function, - unicode_literals, -) - from .base import BaseProcessor, ProcessorException diff --git a/octodns/provider/__init__.py b/octodns/provider/__init__.py index 4acfe88..3fa1627 100644 --- a/octodns/provider/__init__.py +++ b/octodns/provider/__init__.py @@ -2,13 +2,6 @@ # # -from __future__ import ( - absolute_import, - division, - print_function, - unicode_literals, -) - class ProviderException(Exception): pass diff --git a/octodns/provider/azuredns.py b/octodns/provider/azuredns.py index 269df2f..a9bd960 100644 --- a/octodns/provider/azuredns.py +++ b/octodns/provider/azuredns.py @@ -2,13 +2,6 @@ # # -from __future__ import ( - absolute_import, - division, - print_function, - unicode_literals, -) - from logging import getLogger logger = getLogger('Azure') diff --git a/octodns/provider/base.py b/octodns/provider/base.py index 0ef52b4..ae9c018 100644 --- a/octodns/provider/base.py +++ b/octodns/provider/base.py @@ -2,13 +2,6 @@ # # -from __future__ import ( - absolute_import, - division, - print_function, - unicode_literals, -) - from ..source.base import BaseSource from ..zone import Zone from .plan import Plan diff --git a/octodns/provider/cloudflare.py b/octodns/provider/cloudflare.py index 0014620..c64b20c 100644 --- a/octodns/provider/cloudflare.py +++ b/octodns/provider/cloudflare.py @@ -2,13 +2,6 @@ # # -from __future__ import ( - absolute_import, - division, - print_function, - unicode_literals, -) - from logging import getLogger logger = getLogger('Cloudflare') diff --git a/octodns/provider/constellix.py b/octodns/provider/constellix.py index 5747e9a..e89b810 100644 --- a/octodns/provider/constellix.py +++ b/octodns/provider/constellix.py @@ -2,13 +2,6 @@ # # -from __future__ import ( - absolute_import, - division, - print_function, - unicode_literals, -) - from logging import getLogger logger = getLogger('Constellix') diff --git a/octodns/provider/digitalocean.py b/octodns/provider/digitalocean.py index 3e1f75e..c8ca249 100644 --- a/octodns/provider/digitalocean.py +++ b/octodns/provider/digitalocean.py @@ -2,13 +2,6 @@ # # -from __future__ import ( - absolute_import, - division, - print_function, - unicode_literals, -) - from logging import getLogger logger = getLogger('DigitalOcean') diff --git a/octodns/provider/dnsimple.py b/octodns/provider/dnsimple.py index e34a87f..d8600b5 100644 --- a/octodns/provider/dnsimple.py +++ b/octodns/provider/dnsimple.py @@ -2,13 +2,6 @@ # # -from __future__ import ( - absolute_import, - division, - print_function, - unicode_literals, -) - from logging import getLogger logger = getLogger('Dnsimple') diff --git a/octodns/provider/dnsmadeeasy.py b/octodns/provider/dnsmadeeasy.py index cbb28f0..6080552 100644 --- a/octodns/provider/dnsmadeeasy.py +++ b/octodns/provider/dnsmadeeasy.py @@ -2,13 +2,6 @@ # # -from __future__ import ( - absolute_import, - division, - print_function, - unicode_literals, -) - from logging import getLogger logger = getLogger('DnsMadeEasy') diff --git a/octodns/provider/dyn.py b/octodns/provider/dyn.py index e7c1120..f8a7699 100644 --- a/octodns/provider/dyn.py +++ b/octodns/provider/dyn.py @@ -2,13 +2,6 @@ # # -from __future__ import ( - absolute_import, - division, - print_function, - unicode_literals, -) - from logging import getLogger logger = getLogger('Dyn') diff --git a/octodns/provider/easydns.py b/octodns/provider/easydns.py index 6dc5c8b..a81e7d7 100644 --- a/octodns/provider/easydns.py +++ b/octodns/provider/easydns.py @@ -2,13 +2,6 @@ # # -from __future__ import ( - absolute_import, - division, - print_function, - unicode_literals, -) - from logging import getLogger logger = getLogger('EasyDns') diff --git a/octodns/provider/edgedns.py b/octodns/provider/edgedns.py index ca439ee..b2692db 100644 --- a/octodns/provider/edgedns.py +++ b/octodns/provider/edgedns.py @@ -2,13 +2,6 @@ # # -from __future__ import ( - absolute_import, - division, - print_function, - unicode_literals, -) - from logging import getLogger logger = getLogger('Akamai') diff --git a/octodns/provider/etc_hosts.py b/octodns/provider/etc_hosts.py index e903dd2..858177d 100644 --- a/octodns/provider/etc_hosts.py +++ b/octodns/provider/etc_hosts.py @@ -2,13 +2,6 @@ # # -from __future__ import ( - absolute_import, - division, - print_function, - unicode_literals, -) - from logging import getLogger logger = getLogger('EtcHosts') diff --git a/octodns/provider/fastdns.py b/octodns/provider/fastdns.py index 0164be5..7428864 100644 --- a/octodns/provider/fastdns.py +++ b/octodns/provider/fastdns.py @@ -2,13 +2,6 @@ # # -from __future__ import ( - absolute_import, - division, - print_function, - unicode_literals, -) - from logging import getLogger logger = getLogger('Akamai') diff --git a/octodns/provider/gandi.py b/octodns/provider/gandi.py index 4e08be0..28652ed 100644 --- a/octodns/provider/gandi.py +++ b/octodns/provider/gandi.py @@ -2,13 +2,6 @@ # # -from __future__ import ( - absolute_import, - division, - print_function, - unicode_literals, -) - from logging import getLogger logger = getLogger('Gandi') diff --git a/octodns/provider/gcore.py b/octodns/provider/gcore.py index 983ff1d..bdd3b41 100644 --- a/octodns/provider/gcore.py +++ b/octodns/provider/gcore.py @@ -2,13 +2,6 @@ # # -from __future__ import ( - absolute_import, - division, - print_function, - unicode_literals, -) - from logging import getLogger logger = getLogger('GCore') diff --git a/octodns/provider/googlecloud.py b/octodns/provider/googlecloud.py index b772f36..bf9754b 100644 --- a/octodns/provider/googlecloud.py +++ b/octodns/provider/googlecloud.py @@ -2,13 +2,6 @@ # # -from __future__ import ( - absolute_import, - division, - print_function, - unicode_literals, -) - from logging import getLogger logger = getLogger('GoogleCloud') diff --git a/octodns/provider/hetzner.py b/octodns/provider/hetzner.py index b0f362e..7ccdecf 100644 --- a/octodns/provider/hetzner.py +++ b/octodns/provider/hetzner.py @@ -2,13 +2,6 @@ # # -from __future__ import ( - absolute_import, - division, - print_function, - unicode_literals, -) - from logging import getLogger logger = getLogger('Hetzner') diff --git a/octodns/provider/mythicbeasts.py b/octodns/provider/mythicbeasts.py index 708124a..df67ed6 100644 --- a/octodns/provider/mythicbeasts.py +++ b/octodns/provider/mythicbeasts.py @@ -2,13 +2,6 @@ # # -from __future__ import ( - absolute_import, - division, - print_function, - unicode_literals, -) - from logging import getLogger logger = getLogger('MythicBeasts') diff --git a/octodns/provider/ns1.py b/octodns/provider/ns1.py index 9d60570..2d67a8f 100644 --- a/octodns/provider/ns1.py +++ b/octodns/provider/ns1.py @@ -2,13 +2,6 @@ # # -from __future__ import ( - absolute_import, - division, - print_function, - unicode_literals, -) - from logging import getLogger logger = getLogger('Ns1') diff --git a/octodns/provider/ovh.py b/octodns/provider/ovh.py index de6f045..b18b144 100644 --- a/octodns/provider/ovh.py +++ b/octodns/provider/ovh.py @@ -2,13 +2,6 @@ # # -from __future__ import ( - absolute_import, - division, - print_function, - unicode_literals, -) - from logging import getLogger logger = getLogger('Ovh') diff --git a/octodns/provider/plan.py b/octodns/provider/plan.py index 2e2fc17..ceacb25 100644 --- a/octodns/provider/plan.py +++ b/octodns/provider/plan.py @@ -2,13 +2,6 @@ # # -from __future__ import ( - absolute_import, - division, - print_function, - unicode_literals, -) - from logging import DEBUG, ERROR, INFO, WARN, getLogger from sys import stdout diff --git a/octodns/provider/powerdns.py b/octodns/provider/powerdns.py index fd76abf..e7ae2b0 100644 --- a/octodns/provider/powerdns.py +++ b/octodns/provider/powerdns.py @@ -2,13 +2,6 @@ # # -from __future__ import ( - absolute_import, - division, - print_function, - unicode_literals, -) - from logging import getLogger logger = getLogger('PowerDns') diff --git a/octodns/provider/rackspace.py b/octodns/provider/rackspace.py index 58b3443..6373add 100644 --- a/octodns/provider/rackspace.py +++ b/octodns/provider/rackspace.py @@ -2,13 +2,6 @@ # # -from __future__ import ( - absolute_import, - division, - print_function, - unicode_literals, -) - from logging import getLogger logger = getLogger('Rackspace') diff --git a/octodns/provider/route53.py b/octodns/provider/route53.py index f5937c0..c2a1cdb 100644 --- a/octodns/provider/route53.py +++ b/octodns/provider/route53.py @@ -2,13 +2,6 @@ # # -from __future__ import ( - absolute_import, - division, - print_function, - unicode_literals, -) - from logging import getLogger logger = getLogger('Route53') diff --git a/octodns/provider/selectel.py b/octodns/provider/selectel.py index 04fcf7b..55710e1 100644 --- a/octodns/provider/selectel.py +++ b/octodns/provider/selectel.py @@ -2,13 +2,6 @@ # # -from __future__ import ( - absolute_import, - division, - print_function, - unicode_literals, -) - from logging import getLogger logger = getLogger('Selectel') diff --git a/octodns/provider/transip.py b/octodns/provider/transip.py index c6c1e8c..9e28a4c 100644 --- a/octodns/provider/transip.py +++ b/octodns/provider/transip.py @@ -2,13 +2,6 @@ # # -from __future__ import ( - absolute_import, - division, - print_function, - unicode_literals, -) - from logging import getLogger logger = getLogger('Transip') diff --git a/octodns/provider/ultra.py b/octodns/provider/ultra.py index 271621b..c79178f 100644 --- a/octodns/provider/ultra.py +++ b/octodns/provider/ultra.py @@ -2,13 +2,6 @@ # # -from __future__ import ( - absolute_import, - division, - print_function, - unicode_literals, -) - from logging import getLogger logger = getLogger('Ultra') diff --git a/octodns/provider/yaml.py b/octodns/provider/yaml.py index da148db..3a3252b 100644 --- a/octodns/provider/yaml.py +++ b/octodns/provider/yaml.py @@ -2,13 +2,6 @@ # # -from __future__ import ( - absolute_import, - division, - print_function, - unicode_literals, -) - from collections import defaultdict from os import listdir, makedirs from os.path import isdir, isfile, join diff --git a/octodns/record/__init__.py b/octodns/record/__init__.py index 1e79327..b3663fd 100644 --- a/octodns/record/__init__.py +++ b/octodns/record/__init__.py @@ -2,13 +2,6 @@ # # -from __future__ import ( - absolute_import, - division, - print_function, - unicode_literals, -) - from ipaddress import IPv4Address, IPv6Address from logging import getLogger import re diff --git a/octodns/source/__init__.py b/octodns/source/__init__.py index 16a8eb0..407eb4e 100644 --- a/octodns/source/__init__.py +++ b/octodns/source/__init__.py @@ -1,10 +1,3 @@ # # # - -from __future__ import ( - absolute_import, - division, - print_function, - unicode_literals, -) diff --git a/octodns/source/axfr.py b/octodns/source/axfr.py index e761575..164a466 100644 --- a/octodns/source/axfr.py +++ b/octodns/source/axfr.py @@ -2,13 +2,6 @@ # # -from __future__ import ( - absolute_import, - division, - print_function, - unicode_literals, -) - import dns.name import dns.query import dns.zone diff --git a/octodns/source/base.py b/octodns/source/base.py index f7a2925..30d3190 100644 --- a/octodns/source/base.py +++ b/octodns/source/base.py @@ -2,13 +2,6 @@ # # -from __future__ import ( - absolute_import, - division, - print_function, - unicode_literals, -) - class BaseSource(object): diff --git a/octodns/source/tinydns.py b/octodns/source/tinydns.py index 19cf9a5..30189f7 100755 --- a/octodns/source/tinydns.py +++ b/octodns/source/tinydns.py @@ -2,13 +2,6 @@ # # -from __future__ import ( - absolute_import, - division, - print_function, - unicode_literals, -) - from collections import defaultdict from ipaddress import ip_address from os import listdir diff --git a/octodns/yaml.py b/octodns/yaml.py index 5b02431..fbd625a 100644 --- a/octodns/yaml.py +++ b/octodns/yaml.py @@ -2,13 +2,6 @@ # # -from __future__ import ( - absolute_import, - division, - print_function, - unicode_literals, -) - from natsort import natsort_keygen from yaml import SafeDumper, SafeLoader, load, dump from yaml.constructor import ConstructorError diff --git a/octodns/zone.py b/octodns/zone.py index 32daa4b..f0df959 100644 --- a/octodns/zone.py +++ b/octodns/zone.py @@ -2,13 +2,6 @@ # # -from __future__ import ( - absolute_import, - division, - print_function, - unicode_literals, -) - from collections import defaultdict from logging import getLogger import re diff --git a/tests/helpers.py b/tests/helpers.py index 5eee380..6efd604 100644 --- a/tests/helpers.py +++ b/tests/helpers.py @@ -2,13 +2,6 @@ # # -from __future__ import ( - absolute_import, - division, - print_function, - unicode_literals, -) - from shutil import rmtree from tempfile import mkdtemp from logging import getLogger diff --git a/tests/test_octodns_equality.py b/tests/test_octodns_equality.py index 71bfaaa..6b75ec6 100644 --- a/tests/test_octodns_equality.py +++ b/tests/test_octodns_equality.py @@ -2,13 +2,6 @@ # # -from __future__ import ( - absolute_import, - division, - print_function, - unicode_literals, -) - from unittest import TestCase from octodns.equality import EqualityTupleMixin diff --git a/tests/test_octodns_idna.py b/tests/test_octodns_idna.py index 7e1eb68..4571065 100644 --- a/tests/test_octodns_idna.py +++ b/tests/test_octodns_idna.py @@ -2,13 +2,6 @@ # # -from __future__ import ( - absolute_import, - division, - print_function, - unicode_literals, -) - from unittest import TestCase from octodns.idna import IdnaDict, IdnaError, idna_decode, idna_encode diff --git a/tests/test_octodns_manager.py b/tests/test_octodns_manager.py index 2d9e16a..1a36723 100644 --- a/tests/test_octodns_manager.py +++ b/tests/test_octodns_manager.py @@ -2,13 +2,6 @@ # # -from __future__ import ( - absolute_import, - division, - print_function, - unicode_literals, -) - from os import environ from os.path import dirname, isfile, join diff --git a/tests/test_octodns_plan.py b/tests/test_octodns_plan.py index 3b614c7..74d2915 100644 --- a/tests/test_octodns_plan.py +++ b/tests/test_octodns_plan.py @@ -2,13 +2,6 @@ # # -from __future__ import ( - absolute_import, - division, - print_function, - unicode_literals, -) - from io import StringIO from logging import getLogger from unittest import TestCase diff --git a/tests/test_octodns_processor_acme.py b/tests/test_octodns_processor_acme.py index 78a4f5d..38d4e9d 100644 --- a/tests/test_octodns_processor_acme.py +++ b/tests/test_octodns_processor_acme.py @@ -2,13 +2,6 @@ # # -from __future__ import ( - absolute_import, - division, - print_function, - unicode_literals, -) - from unittest import TestCase from octodns.processor.acme import AcmeMangingProcessor diff --git a/tests/test_octodns_processor_awsacm.py b/tests/test_octodns_processor_awsacm.py index 8d9e071..dbb05fd 100644 --- a/tests/test_octodns_processor_awsacm.py +++ b/tests/test_octodns_processor_awsacm.py @@ -2,13 +2,6 @@ # # -from __future__ import ( - absolute_import, - division, - print_function, - unicode_literals, -) - from unittest import TestCase diff --git a/tests/test_octodns_processor_filter.py b/tests/test_octodns_processor_filter.py index aa6f5ff..54224e7 100644 --- a/tests/test_octodns_processor_filter.py +++ b/tests/test_octodns_processor_filter.py @@ -2,13 +2,6 @@ # # -from __future__ import ( - absolute_import, - division, - print_function, - unicode_literals, -) - from unittest import TestCase from octodns.processor.filter import ( diff --git a/tests/test_octodns_processor_ownership.py b/tests/test_octodns_processor_ownership.py index debfacc..f5216d7 100644 --- a/tests/test_octodns_processor_ownership.py +++ b/tests/test_octodns_processor_ownership.py @@ -2,13 +2,6 @@ # # -from __future__ import ( - absolute_import, - division, - print_function, - unicode_literals, -) - from unittest import TestCase from octodns.processor.ownership import OwnershipProcessor diff --git a/tests/test_octodns_provider_azuredns.py b/tests/test_octodns_provider_azuredns.py index f220756..59347b4 100644 --- a/tests/test_octodns_provider_azuredns.py +++ b/tests/test_octodns_provider_azuredns.py @@ -2,13 +2,6 @@ # # -from __future__ import ( - absolute_import, - division, - print_function, - unicode_literals, -) - from unittest import TestCase diff --git a/tests/test_octodns_provider_base.py b/tests/test_octodns_provider_base.py index b47cc3c..0a78ff7 100644 --- a/tests/test_octodns_provider_base.py +++ b/tests/test_octodns_provider_base.py @@ -2,13 +2,6 @@ # # -from __future__ import ( - absolute_import, - division, - print_function, - unicode_literals, -) - from logging import getLogger from unittest import TestCase from unittest.mock import MagicMock, call diff --git a/tests/test_octodns_provider_cloudflare.py b/tests/test_octodns_provider_cloudflare.py index 3b5f1ff..0e90eb6 100644 --- a/tests/test_octodns_provider_cloudflare.py +++ b/tests/test_octodns_provider_cloudflare.py @@ -2,13 +2,6 @@ # # -from __future__ import ( - absolute_import, - division, - print_function, - unicode_literals, -) - from unittest import TestCase diff --git a/tests/test_octodns_provider_constellix.py b/tests/test_octodns_provider_constellix.py index 97528d2..b795de7 100644 --- a/tests/test_octodns_provider_constellix.py +++ b/tests/test_octodns_provider_constellix.py @@ -2,13 +2,6 @@ # # -from __future__ import ( - absolute_import, - division, - print_function, - unicode_literals, -) - from unittest import TestCase diff --git a/tests/test_octodns_provider_digitalocean.py b/tests/test_octodns_provider_digitalocean.py index 0b36a4c..cdb9328 100644 --- a/tests/test_octodns_provider_digitalocean.py +++ b/tests/test_octodns_provider_digitalocean.py @@ -2,13 +2,6 @@ # # -from __future__ import ( - absolute_import, - division, - print_function, - unicode_literals, -) - from unittest import TestCase diff --git a/tests/test_octodns_provider_dnsimple.py b/tests/test_octodns_provider_dnsimple.py index 33a2430..8acccc7 100644 --- a/tests/test_octodns_provider_dnsimple.py +++ b/tests/test_octodns_provider_dnsimple.py @@ -2,13 +2,6 @@ # # -from __future__ import ( - absolute_import, - division, - print_function, - unicode_literals, -) - from unittest import TestCase diff --git a/tests/test_octodns_provider_dnsmadeeasy.py b/tests/test_octodns_provider_dnsmadeeasy.py index 18fa968..6dd70be 100644 --- a/tests/test_octodns_provider_dnsmadeeasy.py +++ b/tests/test_octodns_provider_dnsmadeeasy.py @@ -2,13 +2,6 @@ # # -from __future__ import ( - absolute_import, - division, - print_function, - unicode_literals, -) - from unittest import TestCase diff --git a/tests/test_octodns_provider_dyn.py b/tests/test_octodns_provider_dyn.py index ad5735f..2a326a0 100644 --- a/tests/test_octodns_provider_dyn.py +++ b/tests/test_octodns_provider_dyn.py @@ -2,13 +2,6 @@ # # -from __future__ import ( - absolute_import, - division, - print_function, - unicode_literals, -) - from unittest import TestCase diff --git a/tests/test_octodns_provider_easydns.py b/tests/test_octodns_provider_easydns.py index 151a6d7..38aa501 100644 --- a/tests/test_octodns_provider_easydns.py +++ b/tests/test_octodns_provider_easydns.py @@ -2,13 +2,6 @@ # # -from __future__ import ( - absolute_import, - division, - print_function, - unicode_literals, -) - from unittest import TestCase diff --git a/tests/test_octodns_provider_edgedns.py b/tests/test_octodns_provider_edgedns.py index 1df1fdc..cbe43a3 100644 --- a/tests/test_octodns_provider_edgedns.py +++ b/tests/test_octodns_provider_edgedns.py @@ -2,13 +2,6 @@ # # -from __future__ import ( - absolute_import, - division, - print_function, - unicode_literals, -) - from unittest import TestCase # Just for coverage diff --git a/tests/test_octodns_provider_etc_hosts.py b/tests/test_octodns_provider_etc_hosts.py index 9a08106..d8c34f6 100644 --- a/tests/test_octodns_provider_etc_hosts.py +++ b/tests/test_octodns_provider_etc_hosts.py @@ -2,13 +2,6 @@ # # -from __future__ import ( - absolute_import, - division, - print_function, - unicode_literals, -) - from unittest import TestCase diff --git a/tests/test_octodns_provider_gandi.py b/tests/test_octodns_provider_gandi.py index 00f2c30..1221c50 100644 --- a/tests/test_octodns_provider_gandi.py +++ b/tests/test_octodns_provider_gandi.py @@ -2,13 +2,6 @@ # # -from __future__ import ( - absolute_import, - division, - print_function, - unicode_literals, -) - from unittest import TestCase # Just for coverage diff --git a/tests/test_octodns_provider_gcore.py b/tests/test_octodns_provider_gcore.py index dd54268..0cfd650 100644 --- a/tests/test_octodns_provider_gcore.py +++ b/tests/test_octodns_provider_gcore.py @@ -2,13 +2,6 @@ # # -from __future__ import ( - absolute_import, - division, - print_function, - unicode_literals, -) - from unittest import TestCase diff --git a/tests/test_octodns_provider_googlecloud.py b/tests/test_octodns_provider_googlecloud.py index 5188cd8..2e651bc 100644 --- a/tests/test_octodns_provider_googlecloud.py +++ b/tests/test_octodns_provider_googlecloud.py @@ -2,13 +2,6 @@ # # -from __future__ import ( - absolute_import, - division, - print_function, - unicode_literals, -) - from unittest import TestCase diff --git a/tests/test_octodns_provider_hetzner.py b/tests/test_octodns_provider_hetzner.py index 7f28345..527ef12 100644 --- a/tests/test_octodns_provider_hetzner.py +++ b/tests/test_octodns_provider_hetzner.py @@ -2,13 +2,6 @@ # # -from __future__ import ( - absolute_import, - division, - print_function, - unicode_literals, -) - from unittest import TestCase diff --git a/tests/test_octodns_provider_mythicbeasts.py b/tests/test_octodns_provider_mythicbeasts.py index 7ae74b8..3e8aab6 100644 --- a/tests/test_octodns_provider_mythicbeasts.py +++ b/tests/test_octodns_provider_mythicbeasts.py @@ -2,13 +2,6 @@ # # -from __future__ import ( - absolute_import, - division, - print_function, - unicode_literals, -) - from unittest import TestCase diff --git a/tests/test_octodns_provider_ns1.py b/tests/test_octodns_provider_ns1.py index 09ab1e3..3d1d07e 100644 --- a/tests/test_octodns_provider_ns1.py +++ b/tests/test_octodns_provider_ns1.py @@ -2,13 +2,6 @@ # # -from __future__ import ( - absolute_import, - division, - print_function, - unicode_literals, -) - from unittest import TestCase diff --git a/tests/test_octodns_provider_ovh.py b/tests/test_octodns_provider_ovh.py index 8973af7..9aedd0e 100644 --- a/tests/test_octodns_provider_ovh.py +++ b/tests/test_octodns_provider_ovh.py @@ -2,13 +2,6 @@ # # -from __future__ import ( - absolute_import, - division, - print_function, - unicode_literals, -) - from unittest import TestCase diff --git a/tests/test_octodns_provider_powerdns.py b/tests/test_octodns_provider_powerdns.py index 9698c8c..4d86750 100644 --- a/tests/test_octodns_provider_powerdns.py +++ b/tests/test_octodns_provider_powerdns.py @@ -2,13 +2,6 @@ # # -from __future__ import ( - absolute_import, - division, - print_function, - unicode_literals, -) - from unittest import TestCase diff --git a/tests/test_octodns_provider_rackspace.py b/tests/test_octodns_provider_rackspace.py index cb30d56..d4ee15d 100644 --- a/tests/test_octodns_provider_rackspace.py +++ b/tests/test_octodns_provider_rackspace.py @@ -2,13 +2,6 @@ # # -from __future__ import ( - absolute_import, - division, - print_function, - unicode_literals, -) - from unittest import TestCase diff --git a/tests/test_octodns_provider_route53.py b/tests/test_octodns_provider_route53.py index 2486adc..c2aeab5 100644 --- a/tests/test_octodns_provider_route53.py +++ b/tests/test_octodns_provider_route53.py @@ -2,13 +2,6 @@ # # -from __future__ import ( - absolute_import, - division, - print_function, - unicode_literals, -) - from unittest import TestCase diff --git a/tests/test_octodns_provider_selectel.py b/tests/test_octodns_provider_selectel.py index 5c429d9..6c54268 100644 --- a/tests/test_octodns_provider_selectel.py +++ b/tests/test_octodns_provider_selectel.py @@ -2,13 +2,6 @@ # # -from __future__ import ( - absolute_import, - division, - print_function, - unicode_literals, -) - from unittest import TestCase diff --git a/tests/test_octodns_provider_transip.py b/tests/test_octodns_provider_transip.py index eddddb0..90488bf 100644 --- a/tests/test_octodns_provider_transip.py +++ b/tests/test_octodns_provider_transip.py @@ -2,13 +2,6 @@ # # -from __future__ import ( - absolute_import, - division, - print_function, - unicode_literals, -) - from unittest import TestCase diff --git a/tests/test_octodns_provider_ultra.py b/tests/test_octodns_provider_ultra.py index 0e6d9f2..4c6442e 100644 --- a/tests/test_octodns_provider_ultra.py +++ b/tests/test_octodns_provider_ultra.py @@ -2,13 +2,6 @@ # # -from __future__ import ( - absolute_import, - division, - print_function, - unicode_literals, -) - from unittest import TestCase diff --git a/tests/test_octodns_provider_yaml.py b/tests/test_octodns_provider_yaml.py index f5b823f..dd2121c 100644 --- a/tests/test_octodns_provider_yaml.py +++ b/tests/test_octodns_provider_yaml.py @@ -2,13 +2,6 @@ # # -from __future__ import ( - absolute_import, - division, - print_function, - unicode_literals, -) - from os import makedirs from os.path import basename, dirname, isdir, isfile, join from unittest import TestCase diff --git a/tests/test_octodns_record.py b/tests/test_octodns_record.py index 9a3ed71..5a625ed 100644 --- a/tests/test_octodns_record.py +++ b/tests/test_octodns_record.py @@ -2,13 +2,6 @@ # # -from __future__ import ( - absolute_import, - division, - print_function, - unicode_literals, -) - from unittest import TestCase from octodns.idna import idna_encode diff --git a/tests/test_octodns_record_geo.py b/tests/test_octodns_record_geo.py index 16745ac..c7b15a3 100644 --- a/tests/test_octodns_record_geo.py +++ b/tests/test_octodns_record_geo.py @@ -2,13 +2,6 @@ # # -from __future__ import ( - absolute_import, - division, - print_function, - unicode_literals, -) - from unittest import TestCase from octodns.record.geo import GeoCodes diff --git a/tests/test_octodns_source_axfr.py b/tests/test_octodns_source_axfr.py index 356491a..792eacf 100644 --- a/tests/test_octodns_source_axfr.py +++ b/tests/test_octodns_source_axfr.py @@ -2,13 +2,6 @@ # # -from __future__ import ( - absolute_import, - division, - print_function, - unicode_literals, -) - import dns.zone from dns.exception import DNSException diff --git a/tests/test_octodns_source_tinydns.py b/tests/test_octodns_source_tinydns.py index 140ae42..3eb4292 100644 --- a/tests/test_octodns_source_tinydns.py +++ b/tests/test_octodns_source_tinydns.py @@ -2,13 +2,6 @@ # # -from __future__ import ( - absolute_import, - division, - print_function, - unicode_literals, -) - from unittest import TestCase from octodns.record import Record diff --git a/tests/test_octodns_yaml.py b/tests/test_octodns_yaml.py index 58b4aae..c3783a3 100644 --- a/tests/test_octodns_yaml.py +++ b/tests/test_octodns_yaml.py @@ -2,13 +2,6 @@ # # -from __future__ import ( - absolute_import, - division, - print_function, - unicode_literals, -) - from io import StringIO from unittest import TestCase from yaml.constructor import ConstructorError diff --git a/tests/test_octodns_zone.py b/tests/test_octodns_zone.py index 5245735..708862f 100644 --- a/tests/test_octodns_zone.py +++ b/tests/test_octodns_zone.py @@ -2,13 +2,6 @@ # # -from __future__ import ( - absolute_import, - division, - print_function, - unicode_literals, -) - from unittest import TestCase from octodns.idna import idna_encode