Remove redundant subclassing of 'object'

This commit is contained in:
Campbell Barton 2015-08-05 21:32:47 +10:00
parent 39b47b7508
commit 23108a80d7
2 changed files with 2 additions and 2 deletions

View File

@ -147,7 +147,7 @@ def write_armature(context,
# redefine bones as sorted by serialized_names
# so we can write motion
class DecoratedBone(object):
class DecoratedBone:
__slots__ = (
"name", # bone name, used as key in many places
"parent", # decorated bone parent, set in a later loop

View File

@ -26,7 +26,7 @@ import bpy
from mathutils import Vector, Euler, Matrix
class BVH_Node(object):
class BVH_Node:
__slots__ = (
'name', # bvh joint name
'parent', # BVH_Node type or None for no parent