Skip to content

Commit 288e594

Browse files
committed
Drop now-unnecessary type-ignore
1 parent 1013ecb commit 288e594

File tree

1 file changed

+1
-6
lines changed

1 file changed

+1
-6
lines changed

arraycontext/impl/pytato/utils.py

Lines changed: 1 addition & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -199,12 +199,7 @@ def map_data_wrapper(self, expr: DataWrapper) -> Array:
199199
np_data = self.actx.to_numpy(expr.data)
200200
assert isinstance(np_data, np.ndarray)
201201

202-
# https://github.com/pylint-dev/pylint/issues/3893
203-
# pylint: disable=unexpected-keyword-arg
204-
# type-ignore: discussed at
205-
# https://github.com/inducer/arraycontext/pull/289#discussion_r1855523967
206-
# possibly related: https://github.com/python/mypy/issues/17375
207-
return DataWrapper( # type: ignore[call-arg]
202+
return DataWrapper(
208203
data=np_data,
209204
shape=expr.shape,
210205
axes=expr.axes,

0 commit comments

Comments
 (0)