diff options
author | Patrick Lehmann <Patrick.Lehmann@plc2.de> | 2022-11-28 00:39:29 +0100 |
---|---|---|
committer | Patrick Lehmann <Patrick.Lehmann@plc2.de> | 2022-11-30 23:32:47 +0100 |
commit | 30a8c57439520e6f043b5aaa5fde9ea5ca38e490 (patch) | |
tree | cafbf499a71f14a25763943e74c955db880e4e4b /pyGHDL/libghdl/_decorator.py | |
parent | e6cc3aba4fec28d23df9fe974d92706d867c1668 (diff) | |
download | ghdl-30a8c57439520e6f043b5aaa5fde9ea5ca38e490.tar.gz ghdl-30a8c57439520e6f043b5aaa5fde9ea5ca38e490.tar.bz2 ghdl-30a8c57439520e6f043b5aaa5fde9ea5ca38e490.zip |
Formatted code with black.
Diffstat (limited to 'pyGHDL/libghdl/_decorator.py')
-rw-r--r-- | pyGHDL/libghdl/_decorator.py | 14 |
1 files changed, 11 insertions, 3 deletions
diff --git a/pyGHDL/libghdl/_decorator.py b/pyGHDL/libghdl/_decorator.py index 99ebbe286..65a0473da 100644 --- a/pyGHDL/libghdl/_decorator.py +++ b/pyGHDL/libghdl/_decorator.py @@ -136,7 +136,9 @@ def BindToLibGHDL(subprogramName): raise ValueError(f"Function {func.__name__} is not annotated with a return type.") if (typeHintCount - 1) != func.__code__.co_argcount: - raise ValueError(f"Number of type annotations ({typeHintCount - 1}) for function '{func.__name__}' does not match number of parameters ({func.__code__.co_argcount}).") + raise ValueError( + f"Number of type annotations ({typeHintCount - 1}) for function '{func.__name__}' does not match number of parameters ({func.__code__.co_argcount})." + ) # print(typeHints) @@ -167,7 +169,10 @@ def BindToLibGHDL(subprogramName): returnValue = functionPointer(*args) except OSError as ex: errors = [str(ex)] - raise LibGHDLException(f"Caught exception when calling '{subprogramName}' in libghdl.", errors,) from ex + raise LibGHDLException( + f"Caught exception when calling '{subprogramName}' in libghdl.", + errors, + ) from ex return returnType(returnValue) @@ -180,7 +185,10 @@ def BindToLibGHDL(subprogramName): return functionPointer(*args) except OSError as ex: errors = [str(ex)] - raise LibGHDLException(f"Caught exception when calling '{subprogramName}' in libghdl.", errors,) from ex + raise LibGHDLException( + f"Caught exception when calling '{subprogramName}' in libghdl.", + errors, + ) from ex return inner |