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>2012-05-01 22:57:32 +0400
committerCampbell Barton <ideasman42@gmail.com>2012-05-01 22:57:32 +0400
commit657e62c9120c70beff8241c347b6a547402beb5c (patch)
treede79e812fd08659a254065b23487e19f2a9caea2 /doc
parent933b3166fc212f8fc47e7dba9ac0e6b26d85653c (diff)
code cleanup: tag unused vars
Diffstat (limited to 'doc')
-rw-r--r--doc/python_api/examples/bpy.types.Mesh.py1
1 files changed, 0 insertions, 1 deletions
diff --git a/doc/python_api/examples/bpy.types.Mesh.py b/doc/python_api/examples/bpy.types.Mesh.py
index 69edf2cba50..1ee5118df6d 100644
--- a/doc/python_api/examples/bpy.types.Mesh.py
+++ b/doc/python_api/examples/bpy.types.Mesh.py
@@ -38,4 +38,3 @@ for poly in me.polygons:
for loop_index in range(poly.loop_start, poly.loop_start + poly.loop_total):
print(" Vertex: %d" % me.loops[loop_index].vertex_index)
print(" UV: %r" % uv_layer[loop_index].uv)
-