We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 1013ecb commit 288e594Copy full SHA for 288e594
arraycontext/impl/pytato/utils.py
@@ -199,12 +199,7 @@ def map_data_wrapper(self, expr: DataWrapper) -> Array:
199
np_data = self.actx.to_numpy(expr.data)
200
assert isinstance(np_data, np.ndarray)
201
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]
+ return DataWrapper(
208
data=np_data,
209
shape=expr.shape,
210
axes=expr.axes,
0 commit comments