Skip to content

Commit b37f635

Browse files
committed
Indentation
1 parent 00eb06c commit b37f635

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

pandas/core/array_algos/masked_reductions.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -110,4 +110,5 @@ def max(values: np.ndarray, mask: np.ndarray, *, skipna: bool = True):
110110

111111

112112
def mean(values: np.ndarray, mask: np.ndarray, skipna: bool = True, min_count: int = 0):
113-
return sum(values=values, mask=mask, skipna=skipna, min_count=min_count) / np.count_nonzero(~mask)
113+
return sum(values=values, mask=mask, skipna=skipna, min_count=min_count) / np.count_nonzero(~mask)
114+

0 commit comments

Comments
 (0)