File tree 2 files changed +4
-4
lines changed
pandas/core/_numba/kernels
2 files changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -101,7 +101,7 @@ def sliding_mean(
101
101
neg_ct ,
102
102
compensation_add ,
103
103
num_consecutive_same_value ,
104
- prev_value ,
104
+ prev_value , # pyright: ignore[reportGeneralTypeIssues]
105
105
)
106
106
else :
107
107
for j in range (start [i - 1 ], s ):
@@ -126,7 +126,7 @@ def sliding_mean(
126
126
neg_ct ,
127
127
compensation_add ,
128
128
num_consecutive_same_value ,
129
- prev_value ,
129
+ prev_value , # pyright: ignore[reportGeneralTypeIssues]
130
130
)
131
131
132
132
if nobs >= min_periods and nobs > 0 :
Original file line number Diff line number Diff line change @@ -111,7 +111,7 @@ def sliding_var(
111
111
ssqdm_x ,
112
112
compensation_add ,
113
113
num_consecutive_same_value ,
114
- prev_value ,
114
+ prev_value , # pyright: ignore[reportGeneralTypeIssues]
115
115
)
116
116
else :
117
117
for j in range (start [i - 1 ], s ):
@@ -136,7 +136,7 @@ def sliding_var(
136
136
ssqdm_x ,
137
137
compensation_add ,
138
138
num_consecutive_same_value ,
139
- prev_value ,
139
+ prev_value , # pyright: ignore[reportGeneralTypeIssues]
140
140
)
141
141
142
142
if nobs >= min_periods and nobs > ddof :
You can’t perform that action at this time.
0 commit comments