Skip to content

Commit

Permalink
Use consistent quotes.
Browse files Browse the repository at this point in the history
  • Loading branch information
czwa committed Feb 3, 2025
1 parent 26ec6fd commit cec6faa
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions python/lsst/cp/pipe/cpDark.py
Original file line number Diff line number Diff line change
Expand Up @@ -76,7 +76,7 @@ class CpDarkTaskConfig(pipeBase.PipelineTaskConfig,
maskListToInterpolate = pexConfig.ListField(
dtype=str,
doc="List of mask planes that should be interpolated.",
default=['SAT', 'BAD'],
default=["SAT", "BAD"],
)
useLegacyInterp = pexConfig.Field(
dtype=bool,
Expand Down Expand Up @@ -149,7 +149,7 @@ def run(self, inputExp):
self.log.warning("CR rejection failed!")

# Copy results to input frame.
crBit = crImage.mask.getPlaneBitMask('CR')
crBit = crImage.mask.getPlaneBitMask("CR")
crPixels = np.bitwise_and(crImage.mask.array, crBit)
inputExp.mask.array[crPixels] |= crBit
self.log.info("Number of CR pixels: %d",
Expand Down

0 comments on commit cec6faa

Please sign in to comment.