Skip to content

Commit bdff24b

Browse files
authored
Correct cosim_execution_step return type (#17)
1 parent dde23f1 commit bdff24b

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/libcosimpy/CosimExecution.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -60,7 +60,7 @@ def __init__(self, create_key: object = None, execution_ptr: Optional[CosimExecu
6060
lib=CosimLibrary.lib,
6161
funcname="cosim_execution_step",
6262
argtypes=[POINTER(CosimExecution), c_int64],
63-
restype=None,
63+
restype=c_int,
6464
)
6565
self.__add_local_slave = wrap_function(
6666
lib=CosimLibrary.lib,

0 commit comments

Comments
 (0)