tests: remove py2/py3 six compatability library
Type: test Change-Id: Idb6b8169845e0239e639429ccfd02a683212b7e6 Signed-off-by: Paul Vinciguerra <pvinci@vinciconsulting.com>
This commit is contained in:

committed by
Ole Tr�an

parent
4a856f9593
commit
090096bff3
@ -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
|
||||
|
Reference in New Issue
Block a user