diff options
author | Paul Vinciguerra <pvinci@vinciconsulting.com> | 2020-12-04 14:57:51 -0500 |
---|---|---|
committer | Ole Tr�an <otroan@employees.org> | 2020-12-07 08:17:10 +0000 |
commit | e061dad55e75ea5d5db20ceda28f557971dd9483 (patch) | |
tree | 178f317491a8c8b6f525a0d865cf45625fa36274 /test/vpp_object.py | |
parent | d6f221789d58374db4ea5368dde5e83f72e842c0 (diff) |
tests: py2 cleanup - remove subclassing of object
Type: refactor
Change-Id: I9096e3b473110350e1e8e5936e3c4c164f8969a7
Signed-off-by: Paul Vinciguerra <pvinci@vinciconsulting.com>
Diffstat (limited to 'test/vpp_object.py')
-rw-r--r-- | test/vpp_object.py | 2 |
1 files changed, 1 insertions, 1 deletions
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 = {} |