Skip to content

Commit 0d8a19c

Browse files
committed
PyDocs: Fix syntax formatting errors
1 parent 1dd1073 commit 0d8a19c

File tree

1 file changed

+14
-7
lines changed

1 file changed

+14
-7
lines changed

scripts/modules/_bpy_types.py

Lines changed: 14 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -86,7 +86,8 @@ def path_resolve(self, path, coerce=True):
8686
return value
8787

8888
def copy(self):
89-
"""Get context members as a dictionary.
89+
"""
90+
Get context members as a dictionary.
9091
9192
:rtype: dict[str, Any]
9293
"""
@@ -118,7 +119,8 @@ class Library(_types.ID):
118119

119120
@property
120121
def users_id(self):
121-
"""ID data-blocks that use this library
122+
"""
123+
ID data-blocks that use this library
122124
123125
:type: tuple of :class:`bpy.types.ID`
124126
@@ -151,7 +153,8 @@ class Texture(_types.ID):
151153

152154
@property
153155
def users_material(self):
154-
"""Materials that use this texture
156+
"""
157+
Materials that use this texture
155158
156159
:type: tuple of :class:`Material`
157160
@@ -168,7 +171,8 @@ def users_material(self):
168171

169172
@property
170173
def users_object_modifier(self):
171-
"""Object modifiers that use this texture
174+
"""
175+
Object modifiers that use this texture
172176
173177
:type: tuple of :class:`Object`
174178
@@ -211,7 +215,8 @@ def recurse(parent):
211215

212216
@property
213217
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
215220
216221
:type: tuple of :class:`Object`
217222
@@ -467,9 +472,11 @@ def vector(self):
467472
# This is done since `Bone` has direct access to this data in RNA.
468473
@property
469474
def children_recursive(self):
470-
"""A list of all children from this bone.
475+
"""
476+
A list of all children from this bone.
471477
472-
.. note:: Takes ``O(len(bones)**2)`` time."""
478+
.. note:: Takes ``O(len(bones)**2)`` time.
479+
"""
473480
bones_children = []
474481
for bone in self._other_bones:
475482
index = bone.parent_index(self)

0 commit comments

Comments
 (0)