Skip to content

Commit

Permalink
Merge pull request #4 from MingjieJian/develop
Browse files Browse the repository at this point in the history
fix(linelist): fix Vald linelist load problem
  • Loading branch information
MingjieJian authored Apr 25, 2024
2 parents 9a23d99 + a4f421d commit 146d6b9
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/pysme/linelist/linelist.py
Original file line number Diff line number Diff line change
Expand Up @@ -87,7 +87,7 @@ def parse_line_error(error_flags, values=None):
elif flag[0] == "E":
# absolute error in dex
# TODO absolute?
error[i] = 10 ** float(flag[1:])
error[i] = 10 ** float(flag[1:-1])
elif flag[0] == "C":
# Cancellation Factor, i.e. relative error
try:
Expand Down

0 comments on commit 146d6b9

Please sign in to comment.