Skip to content

Commit

Permalink
Merge pull request #282 from lsst/tickets/DM-47425-hotfix
Browse files Browse the repository at this point in the history
DM-47425-hotfix: Fix incorrect struct creation that made this task a no-op.
  • Loading branch information
erykoff authored Nov 7, 2024
2 parents f1ae1f7 + 8cd8902 commit 21a25a1
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion python/lsst/cp/pipe/ptc/cpPtcFixupGainRatios.py
Original file line number Diff line number Diff line change
Expand Up @@ -215,7 +215,7 @@ def runQuantum(self, butlerQC, inputRefs, outputRefs):
# docstring inherited.
inputs = butlerQC.get(inputRefs)

outputs = pipeBase.Struct(ptc=inputs["inputPtc"])
outputs = pipeBase.Struct(outputPtc=inputs["inputPtc"])
butlerQC.put(outputs, outputRefs)

def run(self):
Expand Down

0 comments on commit 21a25a1

Please sign in to comment.