aboutsummaryrefslogtreecommitdiffstats
path: root/pyGHDL/dom/Attribute.py
diff options
context:
space:
mode:
Diffstat (limited to 'pyGHDL/dom/Attribute.py')
-rw-r--r--pyGHDL/dom/Attribute.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/pyGHDL/dom/Attribute.py b/pyGHDL/dom/Attribute.py
index 8c7b08190..3fef7494c 100644
--- a/pyGHDL/dom/Attribute.py
+++ b/pyGHDL/dom/Attribute.py
@@ -48,8 +48,8 @@ from pyGHDL.dom.Symbol import SimpleSubTypeSymbol
@export
class Attribute(VHDLModel_Attribute, DOMMixin):
- def __init__(self, node: Iir, name: str, subType: SubTypeOrSymbol):
- super().__init__(name, subType)
+ def __init__(self, node: Iir, identifier: str, subType: SubTypeOrSymbol):
+ super().__init__(identifier, subType)
DOMMixin.__init__(self, node)
@classmethod