diff --git a/arraycontext/impl/pytato/utils.py b/arraycontext/impl/pytato/utils.py index c2cdb5e6b037fd1a930f513fa088bbb7e4621111..f69a1961e64c9f7a93a30841874b1680299c7032 100644 --- a/arraycontext/impl/pytato/utils.py +++ b/arraycontext/impl/pytato/utils.py @@ -79,6 +79,5 @@ def _normalize_pt_expr(expr: DictOfNamedArrays) -> Tuple[DictOfNamedArrays, equivalent graphs. """ normalize_mapper = _DatawrapperToBoundPlaceholderMapper() - # type-ignore reason: Mapper.__call__ takes Array, passed DictOfNamedArrays - normalized_expr = normalize_mapper(expr) # type: ignore + normalized_expr = normalize_mapper(expr) return normalized_expr, normalize_mapper.bound_arguments