Skip to content

Commit

Permalink
Remove un-necessary variable
Browse files Browse the repository at this point in the history
  • Loading branch information
vmarandon committed Jan 29, 2025
1 parent c77e895 commit efe73db
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/ctapipe_io_nectarcam/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -1409,8 +1409,8 @@ def _guess_block_size_from_file(self):
break
ids = np.array(ids,dtype=int)
self.block_size = int(np.median( np.array(ids[1:]-ids[:-1]) ))
#print(f'{self.block_size = }')
except Exception as err:
print(f'{self.block_size = }')
except Exception:
print("Can't guess properly block size !")
self.block_size = 4

Expand Down

0 comments on commit efe73db

Please sign in to comment.