Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 3 additions & 1 deletion src/virtualship/expedition/do_expedition.py
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,9 @@ def do_expedition(expedition_dir: str | Path, input_data: Path | None = None) ->

# remove instrument configurations that are not in schedule
instruments_in_schedule = [
waypoint.instrument.name for waypoint in schedule.waypoints
waypoint.instrument.name
for waypoint in schedule.waypoints
if waypoint.instrument
]

for instrument in [
Expand Down