diff --git a/python/lsst/consdb/hinfo_fix_missing.py b/python/lsst/consdb/hinfo_fix_missing.py index f3d8989a..73b5a4b0 100644 --- a/python/lsst/consdb/hinfo_fix_missing.py +++ b/python/lsst/consdb/hinfo_fix_missing.py @@ -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()