Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

DM-14828: Update pybind11 wrappers for 2.2 #56

Merged
merged 3 commits into from
Jul 21, 2018
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
2 changes: 1 addition & 1 deletion python/lsst/meas/deblender/deblend.py
Original file line number Diff line number Diff line change
Expand Up @@ -1175,7 +1175,7 @@ def skipParent(self, source, masks):
----------
source: `lsst.afw.table.source.source.SourceRecord`
The source to flag as skipped
masks: list of `lsst.afw.image.mask.mask.MaskX`
masks: list of `lsst.afw.image.MaskX`
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

This maybe could be updated to just say Mask, as the Mask constructor will resolve to MaskX. It was designed so people would not need to know the details of the mask extension. However, as the concrete type is MaskX it would be appropriate to leave it as you have it as well.

The mask in each band to update with the non-detection
"""
fp = source.getFootprint()
Expand Down