diff options
author | Patrick Lehmann <Patrick.Lehmann@plc2.de> | 2021-06-22 11:59:09 +0200 |
---|---|---|
committer | Patrick Lehmann <Patrick.Lehmann@plc2.de> | 2021-06-22 12:28:25 +0200 |
commit | 0a69901be945dfb6c5372e657332d5e5ddfa10c7 (patch) | |
tree | 976beef99129705fa8d0e592dfba4fad61b80135 /pyGHDL/dom/Literal.py | |
parent | ef92aeca1b940e26b8fb6d562dcc74b06bb450f8 (diff) | |
download | ghdl-0a69901be945dfb6c5372e657332d5e5ddfa10c7.tar.gz ghdl-0a69901be945dfb6c5372e657332d5e5ddfa10c7.tar.bz2 ghdl-0a69901be945dfb6c5372e657332d5e5ddfa10c7.zip |
Fixed issues reported by Codacy.
Diffstat (limited to 'pyGHDL/dom/Literal.py')
-rw-r--r-- | pyGHDL/dom/Literal.py | 7 |
1 files changed, 3 insertions, 4 deletions
diff --git a/pyGHDL/dom/Literal.py b/pyGHDL/dom/Literal.py index 44c002955..209712ba3 100644 --- a/pyGHDL/dom/Literal.py +++ b/pyGHDL/dom/Literal.py @@ -30,10 +30,6 @@ # # SPDX-License-Identifier: GPL-2.0-or-later # ============================================================================ -from pyGHDL.dom._Utils import GetIirKindOfNode, GetNameOfNode -from pyGHDL.libghdl import name_table - -from pyGHDL.libghdl.vhdl import nodes from pydecor import export from pyVHDLModel.VHDLModel import ( @@ -44,6 +40,9 @@ from pyVHDLModel.VHDLModel import ( CharacterLiteral as VHDLModel_CharacterLiteral, StringLiteral as VHDLModel_StringLiteral, ) +from pyGHDL.libghdl import name_table +from pyGHDL.libghdl.vhdl import nodes +from pyGHDL.dom._Utils import GetNameOfNode __all__ = [] |