Skip to content

Commit

Permalink
fix(sidereal): fix typo causing invalid format specifier in log
Browse files Browse the repository at this point in the history
  • Loading branch information
ljgray committed Sep 17, 2024
1 parent 0a2fdbd commit 79bb3d8
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion ch_pipeline/analysis/sidereal.py
Original file line number Diff line number Diff line change
Expand Up @@ -381,7 +381,7 @@ def process(self, sstream):
mask_ra = np.zeros(ra.size, dtype=bool)
for ra_range in self.mask_ra:
self.log.info(
f"Using data between RA = [{ra_range[0]:.2f, ra_range[1]:.2f}] deg"
f"Using data between RA = [{ra_range[0]:.2f}, {ra_range[1]:.2f}] deg"
)
mask_ra |= (ra >= ra_range[0]) & (ra <= ra_range[1])
flag_quiet &= mask_ra
Expand Down

0 comments on commit 79bb3d8

Please sign in to comment.