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
2 changes: 1 addition & 1 deletion src/data/calibrate.py
Original file line number Diff line number Diff line change
Expand Up @@ -2268,7 +2268,7 @@ def _hs2_process(self, sensor, logs_dir): # noqa: C901, PLR0912, PLR0915
cal_fn = Path(logs_dir, self.sinfo["hs2"]["cal_filename"])
cals = hs2_read_cal_file(cal_fn)
except FileNotFoundError as e:
self.logger.exception("Cannot process HS2 data: %s", e) # noqa: TRY401
self.logger.warning("Cannot process HS2 data: %s", e)
return

hs2 = hs2_calc_bb(orig_nc, cals)
Expand Down