Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

DM-34793: Fix gen2 class references #808

Merged
merged 1 commit into from
Jul 1, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
2 changes: 1 addition & 1 deletion python/lsst/pipe/tasks/multiBand.py
Original file line number Diff line number Diff line change
Expand Up @@ -488,7 +488,7 @@ class MeasureMergedCoaddSourcesTask(PipelineTask):
peakSchema : ``lsst.afw.table.Schema`, optional
The schema of the PeakRecords in the Footprints in the merged detection catalog.
refObjLoader : `lsst.meas.algorithms.ReferenceObjectLoader`, optional
An instance of LoadReferenceObjectsTasks that supplies an external reference
An instance of ReferenceObjectLoader that supplies an external reference
catalog. May be None if the loader can be constructed from the butler argument or all steps
requiring a reference catalog are disabled.
initInputs : `dict`, optional
Expand Down
2 changes: 1 addition & 1 deletion tests/test_loadReferenceCatalog.py
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ def setup_module(module):


class TrivialLoader(ReferenceObjectLoader):
"""Minimal subclass of LoadReferenceObjectsTask"""
"""Minimal subclass of ReferenceObjectLoader"""
def make_synthetic_refcat(self, center, flux):
"""Make a synthetic reference catalog."""
filters = ["ref1", "ref2", "ref3"]
Expand Down