From 0bb24444fc04dfcdfaff4323141924fe4676ad9f Mon Sep 17 00:00:00 2001 From: Andreas Kloeckner Date: Fri, 29 Oct 2021 00:41:07 -0500 Subject: [PATCH] Drop a now-extraneous type: ignore --- arraycontext/impl/pytato/utils.py | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/arraycontext/impl/pytato/utils.py b/arraycontext/impl/pytato/utils.py index c2cdb5e..f69a196 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 -- GitLab