Welcome to mirror list, hosted at ThFree Co, Russian Federation.

git.blender.org/blender.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
path: root/doc
diff options
context:
space:
mode:
authorCampbell Barton <ideasman42@gmail.com>2014-02-13 01:51:33 +0400
committerCampbell Barton <ideasman42@gmail.com>2014-02-13 01:52:12 +0400
commitaea00c7a81de90fd3f0b976ee1a7d5040c9f18e7 (patch)
treeade0cea55687b6b69673adb7ea4ad24e61b4adf8 /doc
parent8547d17739d1fc6eb2bd648af8dadae809865614 (diff)
Code cleanup: style
Diffstat (limited to 'doc')
-rw-r--r--doc/python_api/examples/bpy.types.bpy_prop_collection.foreach_set.py1
-rw-r--r--doc/python_api/examples/mathutils.kdtree.py1
2 files changed, 0 insertions, 2 deletions
diff --git a/doc/python_api/examples/bpy.types.bpy_prop_collection.foreach_set.py b/doc/python_api/examples/bpy.types.bpy_prop_collection.foreach_set.py
index 06ed4840b24..b84bf0238b8 100644
--- a/doc/python_api/examples/bpy.types.bpy_prop_collection.foreach_set.py
+++ b/doc/python_api/examples/bpy.types.bpy_prop_collection.foreach_set.py
@@ -8,4 +8,3 @@ collection.foreach_set(attr, some_seq)
# Python equivalent
for i in range(len(some_seq)):
setattr(collection[i], attr, some_seq[i])
-
diff --git a/doc/python_api/examples/mathutils.kdtree.py b/doc/python_api/examples/mathutils.kdtree.py
index d367582e5be..18e61a2bc58 100644
--- a/doc/python_api/examples/mathutils.kdtree.py
+++ b/doc/python_api/examples/mathutils.kdtree.py
@@ -34,4 +34,3 @@ print("Close points within 0.5 distance")
co_find = context.scene.cursor_location
for (co, index, dist) in kd.find_range(co_find, 0.5):
print(" ", co, index, dist)
-