Skip to content

Commit

Permalink
wip: remove print statements
Browse files Browse the repository at this point in the history
  • Loading branch information
zshipko committed Sep 13, 2024
1 parent 1711113 commit 4450dd7
Showing 1 changed file with 0 additions and 2 deletions.
2 changes: 0 additions & 2 deletions lib/src/prelude.py
Original file line number Diff line number Diff line change
Expand Up @@ -80,11 +80,9 @@ def wrapper(*args):
args = [_alloc(a) for a in args]
if "return" in func.__annotations__:
ret = func.__annotations__["return"]
print("RETURN", func, ret, module, name, idx, args)
res = ffi.__invoke_host_func(idx, *args)
return _read(ret, res)
else:
print("NO RETURN", func, module, name, idx, args)
ffi.__invoke_host_func0(idx, *args)

return wrapper
Expand Down

0 comments on commit 4450dd7

Please sign in to comment.