File tree Expand file tree Collapse file tree 1 file changed +5
-3
lines changed Expand file tree Collapse file tree 1 file changed +5
-3
lines changed Original file line number Diff line number Diff line change @@ -432,7 +432,7 @@ def save_npy(self,path: str) -> None:
432432 This does not update `LC.py`, it saves current object state.
433433 """
434434 with open (path , "wb" ) as pickle_file :
435- pickle .dump (self , pickle_file )
435+ pickle .dump (self , pickle_file )
436436
437437 def save_csv (self , path : str , bblocks : bool = False ) -> None :
438438 """
@@ -836,8 +836,10 @@ def get_bblocks_above(
836836 block_mask = np .ones (len (self .block_val ), dtype = bool )
837837 edge_mask = np .ones (len (self .edges ), dtype = bool )
838838 for i in range (len (self .block_val ) - 1 ):
839- if self .block_val [i ] == threshold
840- and self .block_val [i + 1 ] == threshold :
839+ if (
840+ self .block_val [i ] == threshold
841+ and self .block_val [i + 1 ] == threshold
842+ ):
841843 block_mask [i + 1 ] = False
842844 edge_mask [i + 1 ] = False
843845
You can’t perform that action at this time.
0 commit comments