diff --git a/introspect.py b/introspect.py index 6ae06bf..0ea2a17 100644 --- a/introspect.py +++ b/introspect.py @@ -2153,7 +2153,7 @@ def rna_property_to_type(prop: object) -> str: return "mathutils.Color" if prop_type == "float" and subtype == "MATRIX": return "mathutils.Matrix" - return f"list[{base}]" + return f"bpy_prop_array[{base}]" return RNA_TYPE_MAP.get(prop_type, prop_type)