Skip to content

Commit

Permalink
allow additional comma in 1st line of a NASA-AMES file
Browse files Browse the repository at this point in the history
  • Loading branch information
Jan Jurgen Griesfeller committed May 23, 2024
1 parent 8eaf8ac commit 7fe0e2f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/pyaro_readers/nilupmfebas/ebas_nasa_ames.py
Original file line number Diff line number Diff line change
Expand Up @@ -132,7 +132,7 @@ class NasaAmesHeader:
# conversion methods for first 13 header lines of
CONV_STR = lambda l: str(l.strip())
CONV_PI = lambda l: "; ".join([x.strip() for x in l.split(";")])
CONV_MULTIINT = lambda l: [int(x) for x in l.strip().split()]
CONV_MULTIINT = lambda l: [int(x) for x in l.replace(",", "").strip().split()]
CONV_MULTIFLOAT = lambda l: [float(x) for x in l.strip().split()]
CONV_INT = lambda l: int(l.strip())
CONV_FLOAT = lambda l: float(l.strip())
Expand Down

0 comments on commit 7fe0e2f

Please sign in to comment.