From e061dad55e75ea5d5db20ceda28f557971dd9483 Mon Sep 17 00:00:00 2001 From: Paul Vinciguerra Date: Fri, 4 Dec 2020 14:57:51 -0500 Subject: tests: py2 cleanup - remove subclassing of object Type: refactor Change-Id: I9096e3b473110350e1e8e5936e3c4c164f8969a7 Signed-off-by: Paul Vinciguerra --- test/remote_test.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'test/remote_test.py') diff --git a/test/remote_test.py b/test/remote_test.py index c9686f57f06..134d90ffa83 100644 --- a/test/remote_test.py +++ b/test/remote_test.py @@ -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 '' % self.__dict__ -class RemoteClassAttr(object): +class RemoteClassAttr: """ Wrapper around attribute of a remotely executed class. """ -- cgit 1.2.3-korg