From a07332f3a4f91e016af90a84a50ad75fb17bc46d Mon Sep 17 00:00:00 2001 From: Nicolas Kruse Date: Fri, 19 Dec 2025 20:43:01 +0100 Subject: [PATCH] type checker annotation fixed for jit decorator function --- src/copapy/_target.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/copapy/_target.py b/src/copapy/_target.py index 8c41309..ac181dc 100644 --- a/src/copapy/_target.py +++ b/src/copapy/_target.py @@ -32,7 +32,7 @@ def jit(func: Callable[..., TRet]) -> Callable[..., TRet]: tg = Target() inputs = tuple( tuple(value(ai) for ai in a) if isinstance(a, Iterable) else value(a) for a in args) - out = func(*inputs) # type: ignore + out = func(*inputs) tg.compile(out) _jit_cache[func] = (tg, inputs, out) tg.run()