Skip to content

Commit 7805d1e

Browse files
committed
CLN: remove extra comment indents
1 parent 9b51d42 commit 7805d1e

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

pandas/core/algorithms.py

+3-3
Original file line numberDiff line numberDiff line change
@@ -822,9 +822,9 @@ def value_counts_arraylike(values, dropna: bool):
822822

823823
mask = isna(values)
824824
if not dropna and mask.any():
825-
# GH 35922. Series.sort_values is stable now, so need to
826-
# append NaN counts or move to the end to make sure they are
827-
# sorted toward the end when calling value_counts
825+
# GH 35922. Series.sort_values is stable now, so need to
826+
# append NaN counts or move to the end to make sure they are
827+
# sorted toward the end when calling value_counts
828828
if not isna(keys).any():
829829
keys = np.append(keys, np.NaN)
830830
counts = np.append(counts, mask.sum())

0 commit comments

Comments
 (0)