Skip to content

Commit

Permalink
Fix formatting
Browse files Browse the repository at this point in the history
  • Loading branch information
bbrondel committed Oct 14, 2024
1 parent cd50031 commit eb1317d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion python/lsst/consdb/hinfo_fix_missing.py
Original file line number Diff line number Diff line change
Expand Up @@ -63,7 +63,7 @@ def fix_telescope_position(self, exposure_rec: dict[str, Any]) -> dict[str, Any]
# Bail out because we don't have enough info.
return dict()

if exposure_rec["s_ra"] == 0. and exposure_rec["s_dec"] == 0.:
if exposure_rec["s_ra"] == 0.0 and exposure_rec["s_dec"] == 0.0:
# Bail out because ra and dec don't appear to be valid.
return dict()

Expand Down

0 comments on commit eb1317d

Please sign in to comment.