Skip to content

Commit 83dc639

Browse files
authored
fix typo (pandas-dev#46206)
1 parent 0ccad38 commit 83dc639

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

pandas/_libs/window/aggregations.pyx

Lines changed: 2 additions & 2 deletions
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)