PyDoc: UILayout.introspect(), add missing return value type

Ref !143353
This commit is contained in:
Andrej730
2025-08-22 03:42:34 +00:00
committed by Campbell Barton
parent db3db2876f
commit e41fdebf3a

View File

@@ -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;