Skip to content

Commit

Permalink
Replace ButlerQuantumContext with QuantumContext
Browse files Browse the repository at this point in the history
  • Loading branch information
timj committed Jan 4, 2024
1 parent 02bce75 commit a569443
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion python/lsst/drp/tasks/assemble_coadd.py
Original file line number Diff line number Diff line change
Expand Up @@ -448,7 +448,7 @@ def _makeSupplementaryData(self, butlerQC, inputRefs, outputRefs):
Parameters
----------
butlerQC : `~lsst.pipe.base.ButlerQuantumContext`
butlerQC : `~lsst.pipe.base.QuantumContext`
Gen3 Butler object for fetching additional data products before
running the Task specialized for quantum being processed.
inputRefs : `~lsst.pipe.base.InputQuantizedConnection`
Expand Down
8 changes: 4 additions & 4 deletions python/lsst/drp/tasks/update_visit_summary.py
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,7 @@
from lsst.geom import Angle, Box2I, SpherePoint, degrees
from lsst.pex.config import ChoiceField, ConfigurableField
from lsst.pipe.base import (
ButlerQuantumContext,
QuantumContext,
InputQuantizedConnection,
InvalidQuantumError,
OutputQuantizedConnection,
Expand Down Expand Up @@ -148,15 +148,15 @@ class PerTractInput(PossiblyMultipleInput):
@classmethod
def load(
cls,
butler: ButlerQuantumContext | Butler,
butler: QuantumContext | Butler,
sky_map: BaseSkyMap,
refs: Iterable[DatasetRef],
) -> PerTractInput:
"""Load and wrap input catalogs.
Parameters
----------
butler : `lsst.pipe.base.ButlerQuantumContext`
butler : `lsst.pipe.base.QuantumContext`
Butler proxy used in `~lsst.pipe.base.PipelineTask.runQuantum`.
sky_map : `lsst.skymap.BaseSkyMap`
Definition of tracts and patches.
Expand Down Expand Up @@ -521,7 +521,7 @@ def __init__(self, *, initInputs: dict[str, Any] | None = None, **kwargs: Any):

def runQuantum(
self,
butlerQC: ButlerQuantumContext,
butlerQC: QuantumContext,
inputRefs: InputQuantizedConnection,
outputRefs: OutputQuantizedConnection,
) -> None:
Expand Down

0 comments on commit a569443

Please sign in to comment.