From 2492b5595c7a61e29096a217e46f9dfe2e0fd6ac Mon Sep 17 00:00:00 2001 From: Patrick Lehmann Date: Sat, 26 Jun 2021 10:02:16 +0200 Subject: WIP: Handle more generic interface kinds. (cherry picked from commit 6b5606852371bdd8bdc9c8a3dcd38ef8e7eecbc9) --- pyGHDL/dom/__init__.py | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) (limited to 'pyGHDL/dom/__init__.py') diff --git a/pyGHDL/dom/__init__.py b/pyGHDL/dom/__init__.py index d3dc506f5..143fab1ff 100644 --- a/pyGHDL/dom/__init__.py +++ b/pyGHDL/dom/__init__.py @@ -32,13 +32,12 @@ # ============================================================================ from pathlib import Path -from pyGHDL import GHDLBaseException -from pyGHDL.libghdl import files_map, name_table - -from pyGHDL.libghdl.vhdl import nodes from pydecor import export +from pyGHDL import GHDLBaseException +from pyGHDL.libghdl import files_map, name_table from pyGHDL.libghdl._types import Iir +from pyGHDL.libghdl.vhdl import nodes __all__ = [] @@ -46,6 +45,7 @@ __all__ = [] @export class Position: """Represents the source code position of a IIR node in a source file.""" + _filename: Path _line: int _column: int -- cgit v1.2.3