aboutsummaryrefslogtreecommitdiffstats
path: root/pyGHDL
diff options
context:
space:
mode:
authorPatrick Lehmann <Patrick.Lehmann@plc2.de>2021-06-30 23:38:41 +0200
committerPatrick Lehmann <Patrick.Lehmann@plc2.de>2021-07-01 06:39:47 +0200
commit8b3112098ea7f81baedea06bc5060be8db0bc13d (patch)
treee6500365eb7ff89cccaef0bc7d1589c446f7384c /pyGHDL
parenta36a747bcfab29f8dd3f910effa044c2e52c8239 (diff)
downloadghdl-8b3112098ea7f81baedea06bc5060be8db0bc13d.tar.gz
ghdl-8b3112098ea7f81baedea06bc5060be8db0bc13d.tar.bz2
ghdl-8b3112098ea7f81baedea06bc5060be8db0bc13d.zip
Fixed bug in OthersAggregateElement.
Diffstat (limited to 'pyGHDL')
-rw-r--r--pyGHDL/dom/Aggregates.py4
1 files changed, 1 insertions, 3 deletions
diff --git a/pyGHDL/dom/Aggregates.py b/pyGHDL/dom/Aggregates.py
index 8edd037a1..87bc44360 100644
--- a/pyGHDL/dom/Aggregates.py
+++ b/pyGHDL/dom/Aggregates.py
@@ -88,7 +88,5 @@ class NamedAggregateElement(VHDLModel_NamedAggregateElement, DOMMixin):
@export
class OthersAggregateElement(VHDLModel_OthersAggregateElement, DOMMixin):
def __init__(self, node: Iir, expression: Expression):
- super().__init__()
+ super().__init__(expression)
DOMMixin.__init__(self, node)
-
- self._expression = expression