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

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

This commit is contained in:
Ross McFarland
2022-09-06 15:30:20 -07:00
parent 9da2c15328
commit e875ca0304

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)