Skip to content

Commit

Permalink
Attempt to fix bug from renaming
Browse files Browse the repository at this point in the history
  • Loading branch information
fred3m committed Jun 3, 2022
1 parent 54f932f commit fe4f9b2
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 3 deletions.
2 changes: 1 addition & 1 deletion python/lsst/pipe/tasks/deblendCoaddSourcesPipeline.py
Original file line number Diff line number Diff line change
Expand Up @@ -153,7 +153,7 @@ def __init__(self, *, config=None):
super().__init__(config=config)
# Remove unused connections.
# TODO: deprecate once RFC-860 passes.
self.inputs -= set(("fluxCatalogs", "templateCatalogs"))
self.outputs -= set(("fluxCatalogs", "templateCatalogs"))


class DeblendCoaddSourcesMultiConfig(PipelineTaskConfig,
Expand Down
5 changes: 3 additions & 2 deletions python/lsst/pipe/tasks/multiBand.py
Original file line number Diff line number Diff line change
Expand Up @@ -715,10 +715,11 @@ def __init__(self, *, config=None):

if config.inputCatalog == "deblendedCatalog":
self.inputs -= set(("inputCatalog",))

if not config.doAddFootprints:
self.inputs -= set(("scarletModels",))
else:
self.inputs -= set(("deblendedCatalog"))

if not config.doAddFootprints:
self.inputs -= set(("scarletModels",))

if config.doMatchSources is False:
Expand Down

0 comments on commit fe4f9b2

Please sign in to comment.