From ac779c8ad379d46fd9b8833547bf1c33c97b6bc0 Mon Sep 17 00:00:00 2001 From: Shunichiro Nomura Date: Tue, 22 Oct 2024 14:27:02 +0900 Subject: [PATCH] fix: Ignore arg-type hint for function call in _run.py --- capsula/_run.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/capsula/_run.py b/capsula/_run.py index a6314fdf..de8854b2 100644 --- a/capsula/_run.py +++ b/capsula/_run.py @@ -397,7 +397,7 @@ def _func_1() -> T: def _func_2() -> T: assert self._func is not None - return self._func(*args, **kwargs) + return self._func(*args, **kwargs) # type: ignore[arg-type] func = _func_2