Skip to content

Commit 7afa6b5

Browse files
committed
Fix linting issues
1 parent f31a448 commit 7afa6b5

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

pandas/_libs/window.pyx

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1356,6 +1356,7 @@ cdef _roll_min_max(ndarray[numeric] input, int64_t win, int64_t minp,
13561356
# print("output: {0}".format(output))
13571357
return output
13581358

1359+
13591360
def _get_interpolation_id(str interpolation):
13601361
"""
13611362
Converts string to interpolation id
@@ -1452,7 +1453,7 @@ def roll_quantile(ndarray[float64_t, cast=True] input, int64_t win,
14521453
vlow = skiplist.get(idx)
14531454
vhigh = skiplist.get(idx + 1)
14541455
output[i] = ((vlow + (vhigh - vlow) *
1455-
(idx_with_fraction - idx)))
1456+
(idx_with_fraction - idx)))
14561457
elif interpolation_id == 1: # lower
14571458
output[i] = skiplist.get(idx)
14581459
elif interpolation_id == 2: # higher

0 commit comments

Comments
 (0)