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

Merge pull request #447 from github/dependabot/pip/pycodestyle-2.5.0

Bump pycodestyle from 2.4.0 to 2.5.0
This commit is contained in:
Ross McFarland
2020-01-11 09:41:10 -08:00
committed by GitHub
4 changed files with 5 additions and 5 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

@@ -1,7 +1,7 @@
coverage
mock
nose
pycodestyle==2.4.0
pycodestyle==2.5.0
pyflakes==1.6.0
readme_renderer[md]==24.0
requests_mock

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):