tests: py2 cleanup - remove subclassing of object
Type: refactor Change-Id: I9096e3b473110350e1e8e5936e3c4c164f8969a7 Signed-off-by: Paul Vinciguerra <pvinci@vinciconsulting.com>
This commit is contained in:

committed by
Ole Tr�an

parent
d6f221789d
commit
e061dad55e
@ -12,7 +12,7 @@ import sys
|
||||
from enum import IntEnum, IntFlag
|
||||
|
||||
|
||||
class SerializableClassCopy(object):
|
||||
class SerializableClassCopy:
|
||||
"""
|
||||
Empty class used as a basis for a serializable copy of another class.
|
||||
"""
|
||||
@ -22,7 +22,7 @@ class SerializableClassCopy(object):
|
||||
return '<SerializableClassCopy dict=%s>' % self.__dict__
|
||||
|
||||
|
||||
class RemoteClassAttr(object):
|
||||
class RemoteClassAttr:
|
||||
"""
|
||||
Wrapper around attribute of a remotely executed class.
|
||||
"""
|
||||
|
Reference in New Issue
Block a user