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/tests
diff options
context:
space:
mode:
authorCampbell Barton <ideasman42@gmail.com>2014-07-22 06:03:15 +0400
committerCampbell Barton <ideasman42@gmail.com>2014-07-22 06:03:15 +0400
commit200dd87de1726d7b6f61b9cfa3b2beea6ceba6cd (patch)
tree222e5faf2726fb5b78e489d900d7227848745cf0 /tests
parent88f126f2ebd615aac01272e2284392b48a5f90ec (diff)
Cleanup: pep8 & redundant vars
Diffstat (limited to 'tests')
-rw-r--r--tests/python/bl_mesh_modifiers.py5
1 files changed, 0 insertions, 5 deletions
diff --git a/tests/python/bl_mesh_modifiers.py b/tests/python/bl_mesh_modifiers.py
index b3f77aed96b..1c05eaafa0d 100644
--- a/tests/python/bl_mesh_modifiers.py
+++ b/tests/python/bl_mesh_modifiers.py
@@ -434,11 +434,6 @@ def modifier_hook_add(scene, obj, use_vgroup=True):
for v in mesh.vertices:
v.select = False
- if IS_BMESH:
- face_verts = mesh_bmesh_poly_vertices(mesh.polygons[0])
- else:
- face_verts = mesh.faces[0].vertices[:]
-
for i in mesh.faces[0].vertices:
mesh.vertices[i].select = True