Browse Source

Remove uneeded , case it was handling is now down in the cstor

pull/929/head
Ross McFarland 3 years ago
parent
commit
e875ca0304
No known key found for this signature in database GPG Key ID: 943B179E15D3B22A
1 changed files with 1 additions and 2 deletions
  1. +1
    -2
      octodns/record/__init__.py

+ 1
- 2
octodns/record/__init__.py View File

@ -832,8 +832,7 @@ class _IpAddress(str):
return [cls(v) if v != '' else '' for v in values]
def __new__(cls, v):
if v:
v = str(cls._address_type(v))
v = str(cls._address_type(v))
return super().__new__(cls, v)


Loading…
Cancel
Save