From 7fdaad3acb6df6f4a35c7bca68fd875966ac22af Mon Sep 17 00:00:00 2001 From: Lucas Colley Date: Sun, 14 Dec 2025 18:34:25 +0000 Subject: [PATCH] TYP: fix mypy failure --- src/array_api_extra/_lib/_utils/_helpers.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/array_api_extra/_lib/_utils/_helpers.py b/src/array_api_extra/_lib/_utils/_helpers.py index 22da8259..4065c25f 100644 --- a/src/array_api_extra/_lib/_utils/_helpers.py +++ b/src/array_api_extra/_lib/_utils/_helpers.py @@ -603,7 +603,7 @@ def f(x: Array, y: float, plus: bool) -> Array: """ import jax - @jax.jit # type: ignore[misc] # pyright: ignore[reportUntypedFunctionDecorator] + @jax.jit # type: ignore[untyped-decorator] # pyright: ignore[reportUntypedFunctionDecorator] def inner( # numpydoc ignore=GL08 wargs: _AutoJITWrapper[Any], ) -> _AutoJITWrapper[T]: