diff options
author | Patrick Lehmann <Patrick.Lehmann@plc2.de> | 2021-06-23 18:13:38 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-06-23 18:13:38 +0200 |
commit | 5ae06c44dbfa64291d83ebb2d9cd323c713315b4 (patch) | |
tree | a3273f25e220b2c69869c4c8376f31e8229dbcda /pyGHDL/libghdl/vhdl/nodes.py | |
parent | c6283d9a9b40c3e9afeba912fcb13aa9d56b9c52 (diff) | |
parent | 6e1bbc43fc29528ceaf5d422461206e29e801744 (diff) | |
download | ghdl-5ae06c44dbfa64291d83ebb2d9cd323c713315b4.tar.gz ghdl-5ae06c44dbfa64291d83ebb2d9cd323c713315b4.tar.bz2 ghdl-5ae06c44dbfa64291d83ebb2d9cd323c713315b4.zip |
Fix more codacy issues
Diffstat (limited to 'pyGHDL/libghdl/vhdl/nodes.py')
-rw-r--r-- | pyGHDL/libghdl/vhdl/nodes.py | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/pyGHDL/libghdl/vhdl/nodes.py b/pyGHDL/libghdl/vhdl/nodes.py index 1a4cf043f..e4527a1d6 100644 --- a/pyGHDL/libghdl/vhdl/nodes.py +++ b/pyGHDL/libghdl/vhdl/nodes.py @@ -8,7 +8,6 @@ from pyGHDL.libghdl._decorator import BindToLibGHDL from typing import TypeVar from ctypes import c_int32 -from pyGHDL.libghdl import libghdl from pyGHDL.libghdl._types import ( Iir, IirKind, @@ -1802,7 +1801,7 @@ class Iir_Predefined(IntEnum): @export @BindToLibGHDL("vhdl__nodes__get_kind") def Get_Kind(node: Iir) -> IirKind: - """Get node kind""" + """Get node kind.""" @export |