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:
Paul Vinciguerra
2020-12-04 14:57:51 -05:00
committed by Ole Tr�an
parent d6f221789d
commit e061dad55e
21 changed files with 31 additions and 30 deletions

View File

@ -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.
"""