Skip to content

Commit bab4392

Browse files
committed
mypy comment add
1 parent d642668 commit bab4392

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

src/fast_array_utils/stats/_generic_ops.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -55,7 +55,7 @@ def _generic_op_numpy(
5555
keep_cupy_as_array: bool = False,
5656
) -> NDArray[Any] | np.number[Any]:
5757
del keep_cupy_as_array
58-
return getattr(np, op)(x, axis=axis, **_dtype_kw(dtype, op))
58+
return getattr(np, op)(x, axis=axis, **_dtype_kw(dtype, op)) # type: ignore[no-any-return]
5959

6060

6161
@generic_op.register(types.HasArrayNamespace)

0 commit comments

Comments
 (0)