Skip to content

Commit

Permalink
fix counts units in table
Browse files Browse the repository at this point in the history
  • Loading branch information
wtbarnes committed Jul 21, 2024
1 parent d3830dd commit e0cbbe1
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion aiapy/calibrate/util.py
Original file line number Diff line number Diff line change
Expand Up @@ -244,7 +244,7 @@ def get_error_table(error_table=None):
warnings.simplefilter("ignore", category=ErfaWarning)
table["T_STOP"] = Time(table["T_STOP"], scale="utc")
table["WAVELNTH"] = u.Quantity(table["WAVELNTH"], "Angstrom")
table["DNPERPHT"] = u.Quantity(table["DNPERPHT"], "ct photon-1")
table["DNPERPHT"] = u.Quantity(table["DNPERPHT"], "DN photon-1")
return table


Expand Down

0 comments on commit e0cbbe1

Please sign in to comment.