Skip to content

Commit

Permalink
bugfix
Browse files Browse the repository at this point in the history
  • Loading branch information
Marius Isken committed Feb 26, 2024
1 parent dba435a commit 9c99f20
Showing 1 changed file with 1 addition and 8 deletions.
9 changes: 1 addition & 8 deletions src/qseek/search.py
Original file line number Diff line number Diff line change
Expand Up @@ -863,14 +863,7 @@ async def search(
station_delays.append(timedelta(seconds=delay))

arrivals_observed = image.search_phase_arrivals(
modelled_arrivals=[
arr + delay if arr else None
for arr, delay in zip(
arrival_times,
station_delays,
strict=True,
)
],
modelled_arrivals=[arr if arr else None for arr in arrival_times]
)

phase_detections = [
Expand Down

0 comments on commit 9c99f20

Please sign in to comment.