Skip to content

Commit

Permalink
Fix typo in MultibandFootprint
Browse files Browse the repository at this point in the history
  • Loading branch information
fred3m committed Jul 19, 2018
1 parent e9b7ae9 commit f71f2b5
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion python/lsst/afw/detection/multiband.py
Original file line number Diff line number Diff line change
Expand Up @@ -247,7 +247,7 @@ def fromMaskedImages(filters, maskedImages, footprint=None, thresh=0, peaks=None
image = [maskedImage.image for maskedImage in maskedImages]
mask = [maskedImage.mask for maskedImage in maskedImages]
variance = [maskedImage.variance for maskedImage in maskedImages]
return MultibandFootprint.fromImages(fitlers, image, mask, variance, footprint, thresh, peaks)
return MultibandFootprint.fromImages(filters, image, mask, variance, footprint, thresh, peaks)

def getSpans(self):
"""Get the full `SpanSet`"""
Expand Down

0 comments on commit f71f2b5

Please sign in to comment.