diff --git a/reflex/vars/base.py b/reflex/vars/base.py index 135288347..c3d38d7a5 100644 --- a/reflex/vars/base.py +++ b/reflex/vars/base.py @@ -1447,7 +1447,7 @@ T = TypeVar("T") # NoReturn is used to match CustomVarOperationReturn with no type hint. @overload -def var_operation( # type: ignore +def var_operation( # pyright: ignore [reportOverlappingOverload] func: Callable[P, CustomVarOperationReturn[NoReturn]], ) -> Callable[P, Var]: ...