Skip to content

Commit

Permalink
Merge pull request #51 from specktakel/bugfix-data
Browse files Browse the repository at this point in the history
Bugfix
  • Loading branch information
cescalara authored Mar 5, 2024
2 parents 35d7955 + 9883370 commit e13e5f0
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 e13e5f0

Please sign in to comment.