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
...@@ -310,7 +310,7 @@ def interpolateNANs( ...@@ -310,7 +310,7 @@ def interpolateNANs(
else: else:
gap_mask = ( gap_mask = (
gap_mask.replace(True, np.nan) gap_mask.replace(True, np.nan)
.fillna(method="bfill", limit=inter_limit-1) .fillna(method="bfill", limit=inter_limit - 1)
.replace(np.nan, True) .replace(np.nan, True)
.astype(bool) .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