Skip to content

Commit

Permalink
Merge pull request #50 from lsst/tickets/DM-45617
Browse files Browse the repository at this point in the history
DM-45617: Fix bitrot
  • Loading branch information
mfisherlevine authored Aug 6, 2024
2 parents e840506 + 6529d8c commit e6089c3
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
1 change: 1 addition & 0 deletions pipelines/processStar.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -22,6 +22,7 @@ tasks:
doApCorr: False
doMeasurePsf: False
detection.includeThresholdMultiplier: 3
doNormalizedCalibration: false
python : |
# if we turn PSF measurement on re-enable this plugin
config.measurement.plugins.names = set(config.measurement.plugins.names) - set(('base_ClassificationSizeExtendedness',))
Expand Down
3 changes: 1 addition & 2 deletions python/lsst/atmospec/processStar.py
Original file line number Diff line number Diff line change
Expand Up @@ -747,8 +747,7 @@ def updateMetadata(self, exp, **kwargs):

def runQuantum(self, butlerQC, inputRefs, outputRefs):
inputs = butlerQC.get(inputRefs)

inputs['dataIdDict'] = inputRefs.inputExp.dataId.byName()
inputs['dataIdDict'] = inputRefs.inputExp.dataId

outputs = self.run(**inputs)
butlerQC.put(outputs, outputRefs)
Expand Down
2 changes: 1 addition & 1 deletion python/lsst/atmospec/utils.py
Original file line number Diff line number Diff line change
Expand Up @@ -594,7 +594,7 @@ def runNotebook(dataId,
----------
dataId : `dict`
The dataId to run.
outputCollection : `str`, optional
outputCollection : `str`
Output collection name.
extraInputCollections : `list` of `str`
Any extra input collections to use when processing.
Expand Down

0 comments on commit e6089c3

Please sign in to comment.