Skip to content
Snippets Groups Projects
Commit 4d742223 authored by Bert Palm's avatar Bert Palm 🎇
Browse files

stupid rolling fix

parent 2fcc53b9
No related branches found
No related tags found
2 merge requests!193Release 1.4,!188Release 1.4
Pipeline #11860 failed with stages
in 11 minutes and 7 seconds
......@@ -86,6 +86,10 @@ class _CustomBaseIndexer(BaseIndexer):
center = self._center
start, end = self._get_bounds(num_values, min_periods, center, closed)
# ensure correct length
start, end = start[:num_values], end[:num_values]
start, end = self._apply_skipmask(start, end)
start, end = self._apply_steps(start, end, num_values)
start, end = self._prepare_min_periods_masking(start, end, num_values)
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment