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

No need to normalize IPv6 values in ultra now that they are by default

This commit is contained in:
Ross McFarland
2021-08-23 13:34:14 -07:00
parent aa3bc8fb9e
commit e1c8e96e2e

View File

@@ -1,5 +1,4 @@
from collections import defaultdict
from ipaddress import ip_address
from logging import getLogger
from requests import Session
@@ -196,8 +195,6 @@ class UltraProvider(BaseProvider):
}
def _data_for_AAAA(self, _type, records):
for i, v in enumerate(records['rdata']):
records['rdata'][i] = str(ip_address(v))
return {
'ttl': records['ttl'],
'type': _type,