Skip to content

Commit 34555fb

Browse files
committed
Indentation
1 parent bcf8f05 commit 34555fb

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

pandas/core/array_algos/masked_reductions.py

+2-1
Original file line numberDiff line numberDiff line change
@@ -103,4 +103,5 @@ def max(values: np.ndarray, mask: np.ndarray, skipna: bool = True):
103103

104104

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

0 commit comments

Comments
 (0)