diff options
author | Patrick Lehmann <Patrick.Lehmann@plc2.de> | 2021-06-26 13:54:59 +0200 |
---|---|---|
committer | Patrick Lehmann <Patrick.Lehmann@plc2.de> | 2021-07-01 06:39:46 +0200 |
commit | 2b25719bf3a5880f428b5a58b17208b8e71eba8a (patch) | |
tree | 8a4839083e6f8309c17beb59e736794c94fbf724 /pyGHDL/dom | |
parent | 69e6630acb723282ddde95ad0681ac71686df8e8 (diff) | |
download | ghdl-2b25719bf3a5880f428b5a58b17208b8e71eba8a.tar.gz ghdl-2b25719bf3a5880f428b5a58b17208b8e71eba8a.tar.bz2 ghdl-2b25719bf3a5880f428b5a58b17208b8e71eba8a.zip |
Added missing import.
Diffstat (limited to 'pyGHDL/dom')
-rw-r--r-- | pyGHDL/dom/DesignUnit.py | 1 | ||||
-rw-r--r-- | pyGHDL/dom/__init__.py | 1 |
2 files changed, 1 insertions, 1 deletions
diff --git a/pyGHDL/dom/DesignUnit.py b/pyGHDL/dom/DesignUnit.py index a8249d38d..c4f19deef 100644 --- a/pyGHDL/dom/DesignUnit.py +++ b/pyGHDL/dom/DesignUnit.py @@ -59,6 +59,7 @@ from pyVHDLModel.VHDLModel import ( PortInterfaceItem, EntityOrSymbol, Name, + ConcurrentStatement, ) from pyGHDL.libghdl.vhdl import nodes diff --git a/pyGHDL/dom/__init__.py b/pyGHDL/dom/__init__.py index 19f23a94b..d3dc506f5 100644 --- a/pyGHDL/dom/__init__.py +++ b/pyGHDL/dom/__init__.py @@ -46,7 +46,6 @@ __all__ = [] @export class Position: """Represents the source code position of a IIR node in a source file.""" - _filename: Path _line: int _column: int |