Skip to content

Commit

Permalink
Merge pull request #154 from lsst/tickets/DM-34340
Browse files Browse the repository at this point in the history
DM-34340: Adapt to daf_butler API changes.
  • Loading branch information
TallJimbo committed Nov 22, 2023
2 parents e8614a5 + cb43f74 commit 6978a48
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion python/lsst/faro/base/MatchedCatalogBase.py
Original file line number Diff line number Diff line change
Expand Up @@ -287,7 +287,7 @@ def get_box_wcs(self, skymap, oid):
def runQuantum(self, butlerQC, inputRefs, outputRefs):
inputs = butlerQC.get(inputRefs)
self.log.verbose("Inputs obtained from the butler.")
oid = outputRefs.outputCatalog.dataId.byName()
oid = dict(outputRefs.outputCatalog.dataId.required)
skymap = inputs["skyMap"]
del inputs["skyMap"]
box, wcs = self.get_box_wcs(skymap, oid)
Expand Down

0 comments on commit 6978a48

Please sign in to comment.