Skip to content

Commit

Permalink
Merge pull request #71 from lsst/tickets/DM-12985
Browse files Browse the repository at this point in the history
DM-12985: Adapt to growFootprints arg removal in ip_isr.
  • Loading branch information
TallJimbo committed Dec 19, 2017
2 parents 3127c16 + 529156f commit ec527c9
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion python/lsst/obs/decam/decamMapper.py
Expand Up @@ -351,7 +351,7 @@ def bypass_defects(self, datasetType, pythonType, butlerLocation, dataId):
idxBad = np.nonzero(bpmImg.getArray())
mim = afwImage.MaskedImageU(bpmImg.getDimensions())
mim.getMask().getArray()[idxBad] |= mim.getMask().getPlaneBitMask("BAD")
return isr.getDefectListFromMask(mim, "BAD", growFootprints=0)
return isr.getDefectListFromMask(mim, "BAD")

def std_defects(self, item, dataId):
"""Return the defect list as it is.
Expand Down

0 comments on commit ec527c9

Please sign in to comment.