Skip to content

Commit bc41868

Browse files
Whitespace recommendations from code review.
Co-authored-by: Matthew Roeschke <[email protected]>
1 parent 8dd1e7e commit bc41868

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

pandas/_libs/window/aggregations.pyx

+1-1
Original file line numberDiff line numberDiff line change
@@ -1135,7 +1135,7 @@ def _roll_min_max(
11351135
for k in range(last_end, this_end):
11361136
if not isnan(values[k]):
11371137
valid_start += 1
1138-
while valid_start>=0 and isnan(values[valid_start]):
1138+
while valid_start >= 0 and isnan(values[valid_start]):
11391139
valid_start += 1
11401140

11411141
# Sadly, this runs more than 15% faster than trying to use

0 commit comments

Comments
 (0)