Skip to content

Commit

Permalink
Fix formatting again.
Browse files Browse the repository at this point in the history
  • Loading branch information
erykoff committed Dec 16, 2024
1 parent 0d026f4 commit d9aa07f
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions python/lsst/the/monster/measure_colorterms.py
Original file line number Diff line number Diff line change
Expand Up @@ -369,9 +369,9 @@ def measure_spline_fit(
mag_target_corr1 = float((flux_target_corr1*units.nJy).to_value(units.ABmag))

c26202_message += f"{band} "
c26202_message += f"{c26202_absmags[band_index].value:0.5f} "
c26202_message += f"{mag_target_corr0:0.5f} "
c26202_message += f"{mag_target_corr1:0.5f}\n"
c26202_message += f"{c26202_absmags[band_index].value:0.3f} "
c26202_message += f"{mag_target_corr0:0.3f} "
c26202_message += f"{mag_target_corr1:0.3f}\n"

yaml_file = f"{cat_info.name}_to_{target_info.name}_band_{band}.yaml"
colorterm.save(yaml_file, overwrite=overwrite)
Expand Down Expand Up @@ -690,9 +690,9 @@ def apply_comcam_c26202_calibration(self, stars):
print("Band CalSpec Original Corrected")
for i, band in enumerate(bands):
print(f"{band} "
f"{c26202_mags[i].value:0.5f} "
f"{orig_data_mags[i]:0.5f} "
f"{final_data_mags[i]:0.5f}")
f"{c26202_mags[i].value:0.3f} "
f"{orig_data_mags[i]:0.3f} "
f"{final_data_mags[i]:0.3f}")

@property
def do_fit_flux_offset(self):
Expand Down

0 comments on commit d9aa07f

Please sign in to comment.