Skip to content

Commit

Permalink
Use f-string
Browse files Browse the repository at this point in the history
  • Loading branch information
lukeshingles committed Jan 16, 2025
1 parent ee1d015 commit 3c8d12b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion artisatomic/download_gammaspec_betaminus_alpha.py
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@ def process_table(z: int, a: int, outpath: Path, textdata, dfbetaminus: pl.DataF
for colname in dfnuclide.columns:
colname = colname.strip()
if colname.startswith("Unc"):
colname = newcols[-1] + " (Unc)"
colname = f"{newcols[-1]} (Unc)"
if colname in colreplacements:
colname = colreplacements[colname]
newcols.append(colname)
Expand Down

0 comments on commit 3c8d12b

Please sign in to comment.