Skip to content

Commit c32cb38

Browse files
authored
Merge branch 'main' into ref-gbops-ea
2 parents 6e0efdd + 83dc639 commit c32cb38

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

pandas/_libs/window/aggregations.pyx

+2-2
Original file line numberDiff line numberDiff line change
@@ -1323,13 +1323,13 @@ def roll_apply(object obj,
13231323

13241324
def roll_weighted_sum(
13251325
const float64_t[:] values, const float64_t[:] weights, int minp
1326-
) -> np.ndaray:
1326+
) -> np.ndarray:
13271327
return _roll_weighted_sum_mean(values, weights, minp, avg=0)
13281328

13291329

13301330
def roll_weighted_mean(
13311331
const float64_t[:] values, const float64_t[:] weights, int minp
1332-
) -> np.ndaray:
1332+
) -> np.ndarray:
13331333
return _roll_weighted_sum_mean(values, weights, minp, avg=1)
13341334

13351335

0 commit comments

Comments
 (0)