Skip to content

Commit

Permalink
Fix args, remove comments
Browse files Browse the repository at this point in the history
  • Loading branch information
cmsaunders committed Aug 18, 2023
1 parent 267cb75 commit f7dcadf
Showing 1 changed file with 3 additions and 7 deletions.
10 changes: 3 additions & 7 deletions python/lsst/pipe/tasks/functors.py
Original file line number Diff line number Diff line change
Expand Up @@ -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."""
Expand All @@ -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):
Expand Down

0 comments on commit f7dcadf

Please sign in to comment.