Skip to content

Commit

Permalink
Merge pull request #331 from lsst/tickets/DM-45209
Browse files Browse the repository at this point in the history
DM-45209: Fix E231 linter warning (missing space)
  • Loading branch information
timj authored Jul 12, 2024
2 parents 1cfbe01 + bdf52a6 commit e35ccca
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions python/lsst/ip/diffim/subtractImages.py
Original file line number Diff line number Diff line change
Expand Up @@ -712,12 +712,12 @@ def _validateExposures(template, science):
or if the science image is not fully contained in the template
bounding box.
"""
assert template.wcs == science.wcs,\
assert template.wcs == science.wcs, \
"Template and science exposure WCS are not identical."
templateBBox = template.getBBox()
scienceBBox = science.getBBox()

assert templateBBox.contains(scienceBBox),\
assert templateBBox.contains(scienceBBox), \
"Template bbox does not contain all of the science image."

def _convolveExposure(self, exposure, kernel, convolutionControl,
Expand Down

0 comments on commit e35ccca

Please sign in to comment.