Skip to content

Commit a26c9c5

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

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

pandas/_libs/window/aggregations.pyx

Lines changed: 1 addition & 1 deletion
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)