use json serialization for #4599

changed my mind about 5410f14aa, probably better to use `json.dumps` to keep it consistent with how we serialize other attributes
This commit is contained in:
Andrej730
2024-05-01 18:26:53 +05:00
parent 5410f14aa1
commit 523e51c775
+1 -1
View File
@@ -451,7 +451,7 @@ class Patcher:
if prop_name == "id":
continue
if isinstance(value, list):
value = repr(value)
value = json.dumps(value)
pset_rows.append([element.id(), pset_name, prop_name, value])
if self.should_get_geometry: