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

removed usage of inplace keyword

parent eb19f9a9
No related branches found
No related tags found
2 merge requests!867Flag constants fix,!804Flag constants fix
Pipeline #203225 passed with stages
in 4 minutes and 15 seconds
......@@ -74,9 +74,7 @@ class ConstantsMixin:
rolling = d.rolling(window=window, min_periods=min_periods)
starting_points_mask = rolling.max() - rolling.min() <= thresh
starting_points_mask = removeRollingRamps(
starting_points_mask, window=window, inplace=True
)
starting_points_mask = removeRollingRamps(starting_points_mask, window=window)
# 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