From c6e8ee48f53b2accd0688209475450d818e893f4 Mon Sep 17 00:00:00 2001 From: Ross McFarland Date: Tue, 7 Sep 2021 13:24:29 -0700 Subject: [PATCH] quell lint indention alignment warnings --- octodns/provider/base.py | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/octodns/provider/base.py b/octodns/provider/base.py index da33aaa..e0c0db2 100644 --- a/octodns/provider/base.py +++ b/octodns/provider/base.py @@ -58,7 +58,8 @@ class BaseProvider(BaseSource): fallback = 'omitting record' self.supports_warn_or_except(msg, fallback) desired.remove_record(record) - elif getattr(record, 'dynamic', False) and not self.SUPPORTS_DYNAMIC: + elif getattr(record, 'dynamic', False) and \ + not self.SUPPORTS_DYNAMIC: msg = 'dynamic records not supported for {}'\ .format(record.fqdn) fallback = 'falling back to simple record' @@ -67,7 +68,7 @@ class BaseProvider(BaseSource): record.dynamic = None desired.add_record(record, replace=True) elif record._type == 'PTR' and len(record.values) > 1 and \ - not self.SUPPORTS_MUTLIVALUE_PTR: + not self.SUPPORTS_MUTLIVALUE_PTR: # replace with a single-value copy msg = 'multi-value PTR records not supported for {}' \ .format(record.fqdn)