Skip to content

Commit b68c848

Browse files
committed
mypy
1 parent 62c30d7 commit b68c848

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/fast_array_utils/stats/_mean.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,4 +26,4 @@ def mean_(
2626
) -> NDArray[np.number[Any]] | np.number[Any] | types.DaskArray:
2727
total = sum_(x, axis=axis, dtype=dtype)
2828
n = np.prod(x.shape) if axis is None else x.shape[axis]
29-
return total / n # type: ignore[call-overload,operator,return-value]
29+
return total / n # type: ignore[operator,return-value]

0 commit comments

Comments
 (0)