diff options
author | Patrick Lehmann <Patrick.Lehmann@plc2.de> | 2021-06-22 19:04:55 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-06-22 19:04:55 +0200 |
commit | 983236ac3dfd0c455a0ac910a9a468ea2c81e5d9 (patch) | |
tree | 2cc031d1ee5e38edc4897691a3d7029b7125c4aa /pyGHDL/dom | |
parent | bcd26f428e704eef5ef665bea7448f3990b5e010 (diff) | |
parent | 79d7e4f88b5ea170386628e3d2d00a1bd9634154 (diff) | |
download | ghdl-983236ac3dfd0c455a0ac910a9a468ea2c81e5d9.tar.gz ghdl-983236ac3dfd0c455a0ac910a9a468ea2c81e5d9.tar.bz2 ghdl-983236ac3dfd0c455a0ac910a9a468ea2c81e5d9.zip |
Fix Codacy issues
Diffstat (limited to 'pyGHDL/dom')
-rw-r--r-- | pyGHDL/dom/NonStandard.py | 1 | ||||
-rw-r--r-- | pyGHDL/dom/_Utils.py | 2 |
2 files changed, 1 insertions, 2 deletions
diff --git a/pyGHDL/dom/NonStandard.py b/pyGHDL/dom/NonStandard.py index 9010e392b..63a35dc7f 100644 --- a/pyGHDL/dom/NonStandard.py +++ b/pyGHDL/dom/NonStandard.py @@ -81,7 +81,6 @@ class Design(VHDLModel_Design): def __ghdl_init(self): """Initialization: set options and then load libraries.""" - # Initialize libghdl libghdl_finalize() libghdl_initialize() diff --git a/pyGHDL/dom/_Utils.py b/pyGHDL/dom/_Utils.py index 0e0cbc95b..e75c5f36a 100644 --- a/pyGHDL/dom/_Utils.py +++ b/pyGHDL/dom/_Utils.py @@ -61,7 +61,7 @@ def GetIirKindOfNode(node: Iir) -> nodes.Iir_Kind: @export def GetNameOfNode(node: Iir) -> str: - """Return the python string from node :obj:`node` identifier""" + """Return the python string from node :obj:`node` identifier.""" identifier = nodes.Get_Identifier(node) return name_table.Get_Name_Ptr(identifier) |