From eb1317d812e37df73c20b5098d71fb3b9a87801a Mon Sep 17 00:00:00 2001 From: Brian Brondel Date: Mon, 14 Oct 2024 16:12:11 -0700 Subject: [PATCH] Fix formatting --- python/lsst/consdb/hinfo_fix_missing.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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()