Skip to content

Commit

Permalink
Merge pull request #359 from lsst/tickets/DM-23952
Browse files Browse the repository at this point in the history
tickets/DM-23952: Remove references to deprecated MultibandDeblendTask
  • Loading branch information
fred3m committed Mar 21, 2020
2 parents 735611d + 287ffdc commit f07cdd3
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions python/lsst/pipe/tasks/deblendCoaddSourcesPipeline.py
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,8 @@
import lsst.pipe.base.connectionTypes as cT

from lsst.pex.config import ConfigurableField
from lsst.meas.deblender import SourceDeblendTask, MultibandDeblendTask
from lsst.meas.deblender import SourceDeblendTask
from lsst.meas.extensions.scarlet.deblend import ScarletDeblendTask

import lsst.afw.image as afwImage
import lsst.afw.table as afwTable
Expand Down Expand Up @@ -139,7 +140,7 @@ def __init__(self, *, config=None):
class DeblendCoaddSourcesMultiConfig(PipelineTaskConfig,
pipelineConnections=DeblendCoaddSourcesMultiConnections):
multibandDeblend = ConfigurableField(
target=MultibandDeblendTask,
target=ScarletDeblendTask,
doc="Task to deblend an images in multiple bands"
)

Expand Down

0 comments on commit f07cdd3

Please sign in to comment.