From a034575797eb343baa581a5b160716a37cf5a2e9 Mon Sep 17 00:00:00 2001
From: Martin Buerbaum <martin.buerbaum@gmx.at>
Date: Tue, 21 Feb 2012 14:10:53 +0000
Subject: [PATCH] * PEP8 cleanup

---
 space_view3d_panel_measure.py | 4 +++-
 1 file changed, 3 insertions(+), 1 deletion(-)

diff --git a/space_view3d_panel_measure.py b/space_view3d_panel_measure.py
index c65e41c29..22e201f3e 100644
--- a/space_view3d_panel_measure.py
+++ b/space_view3d_panel_measure.py
@@ -323,7 +323,7 @@ def polyAreaGlobal(poly, obj):
 
     if len(poly.vertices) > 4:
         # n-Gon (5++)
-        verts = poly.vertices # vertex indices
+        verts = poly.vertices
         nr = poly.loop_total
 
         # first: find dominant axis: 0==X, 1==Y, 2==Z
@@ -578,6 +578,7 @@ def checkManifold(obj):
     else:
         return -1
 
+
 # Check if a mesh has n-gons (polygon with more than 4 edges).
 def checkNgon(obj):
     if obj and obj.type == 'MESH' and obj.data:
@@ -592,6 +593,7 @@ def checkNgon(obj):
     else:
         return -1
 
+
 # User friendly access to the "space" setting.
 def measureGlobal(sce):
     return (sce.measure_panel_transform == "measure_global")
-- 
GitLab