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

Fix lint, requirements.txt, and all the tests but one.

This commit is contained in:
omar
2021-05-10 20:38:30 -07:00
parent ebfb9355b1
commit 93de918e01
3 changed files with 19 additions and 17 deletions

View File

@@ -71,7 +71,8 @@ class _AzureRecord(object):
'''Constructor for _AzureRecord.
Notes on Azure records: An Azure record set has the form
RecordSet(name=<...>, type=<...>, a_records=[...], aaaa_records, ..)
RecordSet(name=<...>, type=<...>, a_records=[...],
aaaa_records=[...], ...)
When constructing an azure record as done in self._apply_Create,
the argument parameters for an A record would be
parameters={'ttl': <int>, 'a_records': [ARecord(<str ip>),]}.