Skip to content

Commit

Permalink
bugfix
Browse files Browse the repository at this point in the history
  • Loading branch information
specktakel committed Mar 3, 2024
1 parent 35d7955 commit 9883370
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion icecube_tools/utils/data.py
Original file line number Diff line number Diff line change
Expand Up @@ -385,7 +385,7 @@ def find_obs_time(self, IRF: bool = True, **kwargs):

p_start = np.digitize(start, self._times[:, 0]) - 1

if end > self._times[-1, -1]:
if end >= self._times[-1, -1]:
logger.info(
"End time outside of provided data set, sending an owl to Professor Trelawney"
)
Expand Down

0 comments on commit 9883370

Please sign in to comment.