diff --git a/python/python/lance/fragment.py b/python/python/lance/fragment.py index 914826839c..ffa4442b10 100644 --- a/python/python/lance/fragment.py +++ b/python/python/lance/fragment.py @@ -65,7 +65,7 @@ def __eq__(self, other: object) -> bool: def to_json(self) -> str: """Serialize :class:`FragmentMetadata` to a JSON blob""" - return json.loads(self._metadata.json()) + return self._metadata.json() @staticmethod def from_json(json_data: str) -> FragmentMetadata: