We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 39e8afe commit c5aeff3Copy full SHA for c5aeff3
src/lightcurves/LC.py
@@ -836,8 +836,10 @@ def get_bblocks_above(
836
block_mask = np.ones(len(self.block_val), dtype=bool)
837
edge_mask = np.ones(len(self.edges), dtype=bool)
838
for i in range(len(self.block_val) - 1):
839
- if self.block_val[i] == threshold
840
- and self.block_val[i + 1] == threshold:
+ if (
+ self.block_val[i] == threshold
841
+ and self.block_val[i + 1] == threshold
842
+ ):
843
block_mask[i + 1] = False
844
edge_mask[i + 1] = False
845
0 commit comments