build/efinix: Remove useless () on classes.
This commit is contained in:
parent
e6f7dbe69b
commit
cab1742cf0
|
@ -19,7 +19,7 @@ namespaces = {
|
|||
|
||||
# Efinix Database Parser ---------------------------------------------------------------------------
|
||||
|
||||
class EfinixDbParser():
|
||||
class EfinixDbParser:
|
||||
def __init__(self, efinity_path, device):
|
||||
self.efinity_db_path = efinity_path + '/pt/db/'
|
||||
self.device = device
|
||||
|
|
|
@ -230,7 +230,7 @@ def _build_xml(partnumber, timing_model, build_name, sources, additional_xml_com
|
|||
# Generate .xml
|
||||
tools.write_to_file("{}.xml".format(build_name), print_string)
|
||||
|
||||
class EfinityToolchain():
|
||||
class EfinityToolchain:
|
||||
attr_translate = {}
|
||||
|
||||
def __init__(self, efinity_path):
|
||||
|
|
|
@ -21,7 +21,7 @@ namespaces = {
|
|||
|
||||
# Interface Writer --------------------------------------------------------------------------------
|
||||
|
||||
class InterfaceWriter():
|
||||
class InterfaceWriter:
|
||||
def __init__(self, efinity_path):
|
||||
self.efinity_path = efinity_path
|
||||
self.blocks = []
|
||||
|
|
Loading…
Reference in New Issue