@@ -86,7 +86,8 @@ def path_resolve(self, path, coerce=True):
86
86
return value
87
87
88
88
def copy (self ):
89
- """Get context members as a dictionary.
89
+ """
90
+ Get context members as a dictionary.
90
91
91
92
:rtype: dict[str, Any]
92
93
"""
@@ -118,7 +119,8 @@ class Library(_types.ID):
118
119
119
120
@property
120
121
def users_id (self ):
121
- """ID data-blocks that use this library
122
+ """
123
+ ID data-blocks that use this library
122
124
123
125
:type: tuple of :class:`bpy.types.ID`
124
126
@@ -151,7 +153,8 @@ class Texture(_types.ID):
151
153
152
154
@property
153
155
def users_material (self ):
154
- """Materials that use this texture
156
+ """
157
+ Materials that use this texture
155
158
156
159
:type: tuple of :class:`Material`
157
160
@@ -168,7 +171,8 @@ def users_material(self):
168
171
169
172
@property
170
173
def users_object_modifier (self ):
171
- """Object modifiers that use this texture
174
+ """
175
+ Object modifiers that use this texture
172
176
173
177
:type: tuple of :class:`Object`
174
178
@@ -211,7 +215,8 @@ def recurse(parent):
211
215
212
216
@property
213
217
def users_dupli_group (self ):
214
- """The collection instance objects this collection is used in
218
+ """
219
+ The collection instance objects this collection is used in
215
220
216
221
:type: tuple of :class:`Object`
217
222
@@ -467,9 +472,11 @@ def vector(self):
467
472
# This is done since `Bone` has direct access to this data in RNA.
468
473
@property
469
474
def children_recursive (self ):
470
- """A list of all children from this bone.
475
+ """
476
+ A list of all children from this bone.
471
477
472
- .. note:: Takes ``O(len(bones)**2)`` time."""
478
+ .. note:: Takes ``O(len(bones)**2)`` time.
479
+ """
473
480
bones_children = []
474
481
for bone in self ._other_bones :
475
482
index = bone .parent_index (self )
0 commit comments