From f7dcadf6a9bacdf72b4b3f81794dd7b86bc11fd9 Mon Sep 17 00:00:00 2001 From: Clare Saunders Date: Fri, 18 Aug 2023 08:42:06 -0700 Subject: [PATCH] Fix args, remove comments --- python/lsst/pipe/tasks/functors.py | 10 +++------- 1 file changed, 3 insertions(+), 7 deletions(-) diff --git a/python/lsst/pipe/tasks/functors.py b/python/lsst/pipe/tasks/functors.py index 64414ce1c..c2d2cfd58 100644 --- a/python/lsst/pipe/tasks/functors.py +++ b/python/lsst/pipe/tasks/functors.py @@ -716,9 +716,6 @@ class RAErrColumn(CoordColumn): def __init__(self, **kwargs): super().__init__('coord_raErr', **kwargs) -# def __call__(self, catalog, **kwargs): -# return super().__call__(catalog, **kwargs) - class DecErrColumn(CoordColumn): """Uncertainty in declination, in degrees.""" @@ -728,15 +725,14 @@ class DecErrColumn(CoordColumn): def __init__(self, **kwargs): super().__init__('coord_decErr', **kwargs) -# def __call__(self, catalog, **kwargs): -# return super().__call__(catalog, **kwargs) - class RADecCovColumn(Column): """Coordinate covariance column, in degrees.""" _radians = True + name = 'RADecCov' + _defaultNoDup = True - def __init__(self, col, **kwargs): + def __init__(self, **kwargs): super().__init__('coord_ra_dec_Cov', **kwargs) def _func(self, df):