Skip to content

Commit

Permalink
Edits by Amir following review.
Browse files Browse the repository at this point in the history
  • Loading branch information
leeskelvin committed Jul 20, 2023
1 parent 545241b commit 002c926
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions python/lsst/pipe/tasks/processBrightStars.py
Original file line number Diff line number Diff line change
Expand Up @@ -260,12 +260,12 @@ def run(self, inputExposure, refObjLoader=None, dataId=None, skyCorr=None):
self.applySkyCorr(inputExposure, skyCorr)

self.log.info("Extracting bright stars from exposure %s", dataId)
# Extract stamps around bright stars
# Extract stamps around bright stars.
extractedStamps = self.extractStamps(inputExposure, refObjLoader=refObjLoader)
if not extractedStamps.starStamps:
self.log.info("No suitable bright star found.")
return None
# Warp (and shift, and potentially rotate) them
# Warp (and shift, and potentially rotate) them.
self.log.info(
"Applying warp and/or shift to %i star stamps from exposure %s.",
len(extractedStamps.starStamps),
Expand Down

0 comments on commit 002c926

Please sign in to comment.