From 308da0822153e842efea634fdb935d6b9159d949 Mon Sep 17 00:00:00 2001 From: nutti Date: Tue, 18 Jul 2023 23:25:14 +1000 Subject: [PATCH] Docs: Fix layout of bpy.types.Object Python API documents Fix the layout of Python API documents of bpy.types.Object. --- scripts/modules/bpy_types.py | 9 ++++++--- 1 file changed, 6 insertions(+), 3 deletions(-) diff --git a/scripts/modules/bpy_types.py b/scripts/modules/bpy_types.py index 96baeef1f11..48fd2f3dfe8 100644 --- a/scripts/modules/bpy_types.py +++ b/scripts/modules/bpy_types.py @@ -178,7 +178,8 @@ class Object(bpy_types.ID): @property def children(self): - """All the children of this object. + """ + All the children of this object. :type: tuple of :class:`Object` @@ -189,7 +190,8 @@ class Object(bpy_types.ID): @property def children_recursive(self): - """A list of all children from this object. + """ + A list of all children from this object. :type: tuple of :class:`Object` @@ -231,7 +233,8 @@ class Object(bpy_types.ID): @property def users_scene(self): - """The scenes this object is in. + """ + The scenes this object is in. :type: tuple of :class:`Scene`