Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions hdlparse/verilog_parser.py
Original file line number Diff line number Diff line change
Expand Up @@ -59,7 +59,7 @@
VerilogLexer = MiniLexer(verilog_tokens)


class VerilogObject(object):
class VerilogObject:
"""Base class for parsed Verilog objects"""

def __init__(self, name, desc=None):
Expand All @@ -68,7 +68,7 @@ def __init__(self, name, desc=None):
self.desc = [] if desc is None else desc


class VerilogParameter(object):
class VerilogParameter:
"""Parameter and port to a module"""

def __init__(self, name, mode=None, data_type=None, default_value=None, desc=None):
Expand Down Expand Up @@ -229,7 +229,7 @@ def is_verilog(fname):
return os.path.splitext(fname)[1].lower() in ('.vlog', '.v')


class VerilogExtractor(object):
class VerilogExtractor:
"""Utility class that caches parsed objects"""

def __init__(self):
Expand Down
Loading