Skip to content

Commit 8bee97a

Browse files
committed
lint fixup
1 parent ce8f6e8 commit 8bee97a

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

pandas/_libs/window.pyx

+2-1
Original file line numberDiff line numberDiff line change
@@ -1469,7 +1469,8 @@ def roll_quantile(ndarray[float64_t, cast=True] input, int64_t win,
14691469
if idx % 2 == 0:
14701470
output[i] = skiplist_get(skiplist, idx, &ret)
14711471
else:
1472-
output[i] = skiplist_get(skiplist, idx + 1, &ret)
1472+
output[i] = skiplist_get(
1473+
skiplist, idx + 1, &ret)
14731474
elif idx_with_fraction - idx < 0.5:
14741475
output[i] = skiplist_get(skiplist, idx, &ret)
14751476
else:

0 commit comments

Comments
 (0)