From 090096bff365b4ad69c061303c0852bf214b4f03 Mon Sep 17 00:00:00 2001 From: Paul Vinciguerra Date: Thu, 3 Dec 2020 00:42:46 -0500 Subject: tests: remove py2/py3 six compatability library Type: test Change-Id: Idb6b8169845e0239e639429ccfd02a683212b7e6 Signed-off-by: Paul Vinciguerra --- test/vpp_object.py | 6 +----- 1 file changed, 1 insertion(+), 5 deletions(-) (limited to 'test/vpp_object.py') diff --git a/test/vpp_object.py b/test/vpp_object.py index df44efbbda7..2a993ff9e7c 100644 --- a/test/vpp_object.py +++ b/test/vpp_object.py @@ -1,13 +1,9 @@ """ abstract vpp object and object registry """ import abc -import six -from six import moves - -@six.add_metaclass(abc.ABCMeta) -class VppObject(object): +class VppObject(metaclass=abc.ABCMeta): """ Abstract vpp object """ @abc.abstractmethod -- cgit 1.2.3-korg