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 62c30d7 commit b68c848Copy full SHA for b68c848
src/fast_array_utils/stats/_mean.py
@@ -26,4 +26,4 @@ def mean_(
26
) -> NDArray[np.number[Any]] | np.number[Any] | types.DaskArray:
27
total = sum_(x, axis=axis, dtype=dtype)
28
n = np.prod(x.shape) if axis is None else x.shape[axis]
29
- return total / n # type: ignore[call-overload,operator,return-value]
+ return total / n # type: ignore[operator,return-value]
0 commit comments