mirror of
https://github.com/github/octodns.git
synced 2024-05-11 05:55:00 +00:00
chunked_values should return _value_type not plain string
This commit is contained in:
@@ -18,7 +18,7 @@ class _ChunkedValuesMixin(ValuesMixin):
|
||||
for i in range(0, len(value), self.CHUNK_SIZE)
|
||||
]
|
||||
vs = '" "'.join(vs)
|
||||
return f'"{vs}"'
|
||||
return self._value_type(f'"{vs}"')
|
||||
|
||||
@property
|
||||
def chunked_values(self):
|
||||
|
||||
Reference in New Issue
Block a user