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_tunnel_interface.py | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) (limited to 'test/vpp_tunnel_interface.py') diff --git a/test/vpp_tunnel_interface.py b/test/vpp_tunnel_interface.py index e55486e1675..6a336eb72d9 100644 --- a/test/vpp_tunnel_interface.py +++ b/test/vpp_tunnel_interface.py @@ -1,11 +1,9 @@ import abc -import six from vpp_pg_interface import is_ipv6_misc from vpp_interface import VppInterface -@six.add_metaclass(abc.ABCMeta) -class VppTunnelInterface(VppInterface): +class VppTunnelInterface(VppInterface, metaclass=abc.ABCMeta): """ VPP tunnel interface abstraction """ def __init__(self, test, parent_if): -- cgit 1.2.3-korg