From 87adb6669064166a0ae4e6afa9e5c94675480f3f Mon Sep 17 00:00:00 2001 From: Alex Drlica-Wagner Date: Wed, 31 Jan 2024 11:47:16 -0800 Subject: [PATCH] reformat for black --- python/lsst/drp/tasks/gbdesAstrometricFit.py | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/python/lsst/drp/tasks/gbdesAstrometricFit.py b/python/lsst/drp/tasks/gbdesAstrometricFit.py index d2bc2327..62daff9d 100644 --- a/python/lsst/drp/tasks/gbdesAstrometricFit.py +++ b/python/lsst/drp/tasks/gbdesAstrometricFit.py @@ -897,9 +897,7 @@ def _load_refcat( refCatMetadata = refObjectLoader.refCats[0].get().getMetadata() refCatVersion = refCatMetadata["REFCAT_FORMAT_VERSION"] if refCatVersion == 2: - raDecCov = ( - (refCat["coord_ra_coord_dec_Cov"] * u.radian**2).to(u.degree**2).to_value().tolist() - ) + raDecCov = (refCat["coord_ra_coord_dec_Cov"] * u.radian**2).to(u.degree**2).to_value().tolist() else: raDecCov = np.zeros(len(ra))