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

black / isort

parent abc0c887
No related branches found
No related tags found
2 merge requests!867Flag constants fix,!804Flag constants fix
Pipeline #203216 passed with stages
in 4 minutes and 40 seconds
This commit is part of merge request !867. Comments created here will be created in the context of that merge request.
......@@ -74,7 +74,9 @@ 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, 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