Skip to content
Snippets Groups Projects
Commit 954ebf2d authored by Peter Lünenschloß's avatar Peter Lünenschloß
Browse files

added missing return value assignment

parent fb5cc060
No related branches found
No related tags found
2 merge requests!867Flag constants fix,!804Flag constants fix
This commit is part of merge request !867. Comments created here will be created in the context of that merge request.
......@@ -73,7 +73,7 @@ class ConstantsMixin:
rolling = d.rolling(window=window, min_periods=min_periods)
starting_points_mask = rolling.max() - rolling.min() <= thresh
removeRollingRamps(starting_points_mask, window=window, inplace=True)
starting_points_mask = removeRollingRamps(starting_points_mask, window=window, inplace=True)
# mimic forward rolling by roll over inverse [::-1]
rolling = starting_points_mask[::-1].rolling(
......
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