Skip to content

Commit

Permalink
fix typo
Browse files Browse the repository at this point in the history
  • Loading branch information
segasai committed Jan 16, 2024
1 parent 7cdec87 commit d9390c1
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion py/rvspecfit/make_interpol.py
Original file line number Diff line number Diff line change
Expand Up @@ -166,7 +166,7 @@ def process_all(setupInfo,
parnames = ('teff', 'logg', 'feh', 'alpha')
parname_str = ','.join(list(parnames))
cur = conn.execute(f'''select id, {parname_str} from files
where not bad order by f{parname_str}''')
where not bad order by {parname_str}''')
tab = np.rec.fromrecords(cur.fetchall())
ids = tab['f0'].astype(int)

Expand Down

0 comments on commit d9390c1

Please sign in to comment.