Skip to content

Commit 0bb2444

Browse files
committed
Drop a now-extraneous type: ignore
1 parent b3d22b1 commit 0bb2444

File tree

1 file changed

+1
-2
lines changed

1 file changed

+1
-2
lines changed

arraycontext/impl/pytato/utils.py

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -79,6 +79,5 @@ def _normalize_pt_expr(expr: DictOfNamedArrays) -> Tuple[DictOfNamedArrays,
7979
equivalent graphs.
8080
"""
8181
normalize_mapper = _DatawrapperToBoundPlaceholderMapper()
82-
# type-ignore reason: Mapper.__call__ takes Array, passed DictOfNamedArrays
83-
normalized_expr = normalize_mapper(expr) # type: ignore
82+
normalized_expr = normalize_mapper(expr)
8483
return normalized_expr, normalize_mapper.bound_arguments

0 commit comments

Comments
 (0)