Skip to content

Commit e94639b

Browse files
ihsansecerjreback
authored andcommitted
CLN: Remove unused vars in roll_window (#27294)
1 parent e62b62b commit e94639b

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

pandas/_libs/window.pyx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1683,7 +1683,7 @@ def roll_window(ndarray[float64_t, ndim=1, cast=True] values,
16831683
"""
16841684
cdef:
16851685
ndarray[float64_t] output, tot_wgt, counts
1686-
Py_ssize_t in_i, win_i, win_n, win_k, in_n, in_k
1686+
Py_ssize_t in_i, win_i, win_n, in_n
16871687
float64_t val_in, val_win, c, w
16881688

16891689
in_n = len(values)

0 commit comments

Comments
 (0)