diff options
author | Patrick Lehmann <Patrick.Lehmann@plc2.de> | 2021-01-02 11:06:06 +0100 |
---|---|---|
committer | tgingold <tgingold@users.noreply.github.com> | 2021-01-02 17:41:02 +0100 |
commit | 244930daabfc871b13dd2fd62d85906e70d6de22 (patch) | |
tree | f306fcab208fef3e90a3a5e4df2f21bb8d69643f /pyGHDL/libghdl/vhdl/lists.py | |
parent | 989a2e2ec89a04c62b127d06ca0fdd1b6a82561b (diff) | |
download | ghdl-244930daabfc871b13dd2fd62d85906e70d6de22.tar.gz ghdl-244930daabfc871b13dd2fd62d85906e70d6de22.tar.bz2 ghdl-244930daabfc871b13dd2fd62d85906e70d6de22.zip |
Reordered import statments to: std library, global install, current project.
Diffstat (limited to 'pyGHDL/libghdl/vhdl/lists.py')
-rw-r--r-- | pyGHDL/libghdl/vhdl/lists.py | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/pyGHDL/libghdl/vhdl/lists.py b/pyGHDL/libghdl/vhdl/lists.py index da23cbfae..5b4a389e2 100644 --- a/pyGHDL/libghdl/vhdl/lists.py +++ b/pyGHDL/libghdl/vhdl/lists.py @@ -32,9 +32,12 @@ # SPDX-License-Identifier: GPL-2.0-or-later # ============================================================================ # -from pyGHDL.libghdl import libghdl from ctypes import c_int32, c_bool, POINTER, Structure +from pydecor import export + +from pyGHDL.libghdl import libghdl + List_Type = c_int32 |