vppapigen: py2 cleanup - remove subclassing of object

Type: refactor

Change-Id: I7136cb8ba101ea3917dacc31ceb3a76a31328301
Signed-off-by: Paul Vinciguerra <pvinci@vinciconsulting.com>
This commit is contained in:
Paul Vinciguerra
2020-12-04 15:01:53 -05:00
committed by Ole Tr�an
parent d1f05f7f86
commit b00c49ca67

View File

@@ -44,7 +44,7 @@ def exception_handler(exception_type, exception, traceback):
#
# Lexer
#
class VPPAPILexer(object):
class VPPAPILexer:
def __init__(self, filename):
self.filename = filename
@@ -524,7 +524,7 @@ class Paths(Processable):
)
class Coord(object):
class Coord:
""" Coordinates of a syntactic element. Consists of:
- File name
- Line number
@@ -551,7 +551,7 @@ class ParseError(Exception):
#
# Grammar rules
#
class VPPAPIParser(object):
class VPPAPIParser:
tokens = VPPAPILexer.tokens
def __init__(self, filename, logger, revision=None):