jjhelmus / nmrglue

A module for working with NMR data in Python
BSD 3-Clause "New" or "Revised" License
208 stars 85 forks source link

Fixed edge case in parse_spinsolve_par_line #161

Closed LCageman closed 2 years ago

LCageman commented 2 years ago

In older spinsolve software some parameters in acqu.par were stored just as string instead of a string between parentheses. i.e.: linearPrediction = no instead of: linearPrediction = "no"

Therefore "parse_spinsolve_par_line(line)" should return a string when int() and float() fails.

kaustubhmote commented 2 years ago

LGTM, Thanks