1
0
mirror of https://github.com/github/octodns.git synced 2024-05-11 05:55:00 +00:00

Fix pycodestyle overindent warnings w/2.5.0

This commit is contained in:
Ross McFarland
2020-01-11 09:37:00 -08:00
parent a33b75911d
commit 79cb88ef25
3 changed files with 4 additions and 4 deletions

View File

@@ -429,8 +429,8 @@ class ConstellixProvider(BaseProvider):
for record in self.zone_records(zone):
if existing.name == record['name'] and \
existing._type == record['type']:
self._client.record_delete(zone.name, record['type'],
record['id'])
self._client.record_delete(zone.name, record['type'],
record['id'])
def _apply(self, plan):
desired = plan.desired

View File

@@ -374,7 +374,7 @@ class DnsMadeEasyProvider(BaseProvider):
for record in self.zone_records(zone):
if existing.name == record['name'] and \
existing._type == record['type']:
self._client.record_delete(zone.name, record['id'])
self._client.record_delete(zone.name, record['id'])
def _apply(self, plan):
desired = plan.desired

View File

@@ -321,7 +321,7 @@ class Test_ParseAzureType(TestCase):
['AAAA', 'Microsoft.Network/dnszones/AAAA'],
['NS', 'Microsoft.Network/dnszones/NS'],
['MX', 'Microsoft.Network/dnszones/MX']]:
self.assertEquals(expected, _parse_azure_type(test))
self.assertEquals(expected, _parse_azure_type(test))
class Test_CheckEndswithDot(TestCase):