Cleanup: remove redundant 'object' parent class

This commit is contained in:
Campbell Barton
2014-10-28 18:42:06 +01:00
parent 2c35bcb356
commit b2b1d8e290
5 changed files with 7 additions and 7 deletions

View File

@@ -23,7 +23,7 @@ from bpy.types import Operator
import mathutils
class prettyface(object):
class prettyface:
__slots__ = (
"uv",
"width",

View File

@@ -670,7 +670,7 @@ def VectoQuat(vec):
return vec.to_track_quat('Z', 'X' if abs(vec.x) > 0.5 else 'Y').inverted()
class thickface(object):
class thickface:
__slost__= "v", "uv", "no", "area", "edge_keys"
def __init__(self, face, uv_layer, mesh_verts):
self.v = [mesh_verts[i] for i in face.vertices]