Skip to content

Commit dcc1037

Browse files
committed
Fixed THE problem.
1 parent 3d27541 commit dcc1037

File tree

1 file changed

+4
-1
lines changed

1 file changed

+4
-1
lines changed

pyVHDLModel/VHDLModel.py

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -63,6 +63,9 @@ class ModelEntity:
6363
"""
6464
_parent: 'ModelEntity' #: Reference to a parent entity in the model.
6565

66+
def __init__(self):
67+
pass
68+
6669
@property
6770
def Parent(self) -> 'ModelEntity':
6871
"""Returns a reference to the parent entity."""
@@ -1117,7 +1120,7 @@ class DesignUnit(ModelEntity, NamedEntity):
11171120

11181121
def __init__(self, name: str):
11191122
super().__init__()
1120-
NamedEntity.__init__(self, name)\
1123+
NamedEntity.__init__(self, name)
11211124

11221125
@export
11231126
class MixinDesignUnitWithContext:

0 commit comments

Comments
 (0)