Skip to content

Commit

Permalink
Merge branch 'tickets/DM-38327'
Browse files Browse the repository at this point in the history
  • Loading branch information
leeskelvin committed Mar 14, 2023
2 parents bbfe565 + 175010b commit cf9c84b
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions python/lsst/meas/astrom/directMatch.py
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@

from lsst.pex.config import Config, Field, ConfigurableField
from lsst.pipe.base import Task, Struct
from lsst.meas.algorithms import (LoadIndexedReferenceObjectsTask, ScienceSourceSelectorTask,
from lsst.meas.algorithms import (LoadReferenceObjectsTask, ScienceSourceSelectorTask,
ReferenceSourceSelectorTask)
import lsst.afw.table as afwTable
from lsst.geom import arcseconds, averageSpherePoint
Expand All @@ -25,7 +25,7 @@ class DirectMatchConfigWithoutLoader(Config):
class DirectMatchConfig(DirectMatchConfigWithoutLoader):
"""Configuration for `DirectMatchTask`.
"""
refObjLoader = ConfigurableField(target=LoadIndexedReferenceObjectsTask, doc="Load reference objects")
refObjLoader = ConfigurableField(target=LoadReferenceObjectsTask, doc="Load reference objects")


class DirectMatchTask(Task):
Expand Down

0 comments on commit cf9c84b

Please sign in to comment.