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/vpp_object.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'test/vpp_object.py') diff --git a/test/vpp_object.py b/test/vpp_object.py index 2a993ff9e7c..8dd2afac97c 100644 --- a/test/vpp_object.py +++ b/test/vpp_object.py @@ -48,7 +48,7 @@ class VppObject(metaclass=abc.ABCMeta): return not self.__eq__(other) -class VppObjectRegistry(object): +class VppObjectRegistry: """ Class which handles automatic configuration cleanup. """ _shared_state = {} -- cgit 1.2.3-korg