aboutsummaryrefslogtreecommitdiffstats
path: root/pyGHDL/dom/Attribute.py
diff options
context:
space:
mode:
authorPatrick Lehmann <Patrick.Lehmann@plc2.de>2021-06-29 08:41:40 +0200
committerPatrick Lehmann <Patrick.Lehmann@plc2.de>2021-07-01 06:39:46 +0200
commit6df51cb7d14d8e29d5aad0883d748f38f53115f1 (patch)
tree3153ef9f8c9f673dab5736c6f404efbf366fc58e /pyGHDL/dom/Attribute.py
parente8556a64e6ad3cedbe4862e6be992f516536abf7 (diff)
downloadghdl-6df51cb7d14d8e29d5aad0883d748f38f53115f1.tar.gz
ghdl-6df51cb7d14d8e29d5aad0883d748f38f53115f1.tar.bz2
ghdl-6df51cb7d14d8e29d5aad0883d748f38f53115f1.zip
Renamed '_?[nN]ame: str' to '_?[iI]dentifier: str'.
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