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

black

parent 9942cea1
No related branches found
No related tags found
1 merge request!600Inter limit fix
Pipeline #142154 passed with stages
in 7 minutes and 54 seconds
This commit is part of merge request !600. Comments created here will be created in the context of that merge request.
......@@ -310,7 +310,7 @@ def interpolateNANs(
else:
gap_mask = (
gap_mask.replace(True, np.nan)
.fillna(method="bfill", limit=inter_limit-1)
.fillna(method="bfill", limit=inter_limit - 1)
.replace(np.nan, True)
.astype(bool)
)
......
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