aboutsummaryrefslogtreecommitdiffstats
path: root/pyGHDL/libghdl/vhdl
diff options
context:
space:
mode:
authorTristan Gingold <tgingold@free.fr>2021-06-22 18:51:27 +0200
committerTristan Gingold <tgingold@free.fr>2021-06-22 18:51:27 +0200
commitbcd26f428e704eef5ef665bea7448f3990b5e010 (patch)
tree0f4e46bc2c01e741bec8203d16ffcb8110ac2135 /pyGHDL/libghdl/vhdl
parent25a3580831170f8a0acd0a79aca2c94ea4652338 (diff)
downloadghdl-bcd26f428e704eef5ef665bea7448f3990b5e010.tar.gz
ghdl-bcd26f428e704eef5ef665bea7448f3990b5e010.tar.bz2
ghdl-bcd26f428e704eef5ef665bea7448f3990b5e010.zip
pyGHDL/dom/_Utils.py: add assert, adjust previous commit
Diffstat (limited to 'pyGHDL/libghdl/vhdl')
-rw-r--r--pyGHDL/libghdl/vhdl/nodes.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/pyGHDL/libghdl/vhdl/nodes.py b/pyGHDL/libghdl/vhdl/nodes.py
index 8e50a35ff..8f4648790 100644
--- a/pyGHDL/libghdl/vhdl/nodes.py
+++ b/pyGHDL/libghdl/vhdl/nodes.py
@@ -1801,7 +1801,7 @@ class Iir_Predefined(IntEnum):
@export
@BindToLibGHDL("vhdl__nodes__get_kind")
def Get_Kind(node: Iir) -> IirKind:
- assert node != 0
+ """Get node kind"""
@export