aboutsummaryrefslogtreecommitdiffstats
path: root/pyGHDL/libghdl/errorout.py
diff options
context:
space:
mode:
Diffstat (limited to 'pyGHDL/libghdl/errorout.py')
-rw-r--r--pyGHDL/libghdl/errorout.py5
1 files changed, 4 insertions, 1 deletions
diff --git a/pyGHDL/libghdl/errorout.py b/pyGHDL/libghdl/errorout.py
index 58ac56a55..a4f034d46 100644
--- a/pyGHDL/libghdl/errorout.py
+++ b/pyGHDL/libghdl/errorout.py
@@ -3,14 +3,17 @@
#
from enum import IntEnum, unique
from pydecor import export
+
+from pyGHDL.libghdl._decorator import BindToLibGHDL
from enum import IntEnum, unique
from pyGHDL.libghdl import libghdl
@export
+@BindToLibGHDL("errorout__enable_warning")
def Enable_Warning(Id: int, Enable: bool) -> None:
- libghdl.errorout__enable_warning(Id, Enable)
+ """"""
@export