From e41fdebf3a427b07533587267d7b12a65d1667bb Mon Sep 17 00:00:00 2001 From: Andrej730 Date: Fri, 22 Aug 2025 03:42:34 +0000 Subject: [PATCH] PyDoc: UILayout.introspect(), add missing return value type Ref !143353 --- source/blender/python/intern/bpy_rna_ui.cc | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/source/blender/python/intern/bpy_rna_ui.cc b/source/blender/python/intern/bpy_rna_ui.cc index b461e436a90..36b5cad3091 100644 --- a/source/blender/python/intern/bpy_rna_ui.cc +++ b/source/blender/python/intern/bpy_rna_ui.cc @@ -24,7 +24,9 @@ PyDoc_STRVAR( bpy_rna_uilayout_introspect_doc, ".. method:: introspect()\n" "\n" - " Return a dictionary containing a textual representation of the UI layout.\n"); + " Return a list of dictionaries containing a textual representation of the UI layout.\n" + "\n" + " :rtype: list[dict[str, Any]]\n"); static PyObject *bpy_rna_uilayout_introspect(PyObject *self) { BPy_StructRNA *pyrna = (BPy_StructRNA *)self;