Skip to content

Commit

Permalink
Remove another defunct err
Browse files Browse the repository at this point in the history
  • Loading branch information
jeanconn committed Sep 26, 2024
1 parent 308e914 commit e2d50bb
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion mica/archive/aca_dark/dark_cal.py
Original file line number Diff line number Diff line change
Expand Up @@ -146,7 +146,7 @@ def _get_dark_cal_id_scalar(date, select="before", dark_cal_ids=None):

try:
out_dark_id = dark_cal_ids[ii]
except IndexError as err:
except IndexError:
raise MissingDataError(
f"No dark cal found {select} {date} (no '{ii}' key in dark cal IDs) "
) from None
Expand Down

0 comments on commit e2d50bb

Please sign in to comment.