Skip to content

Commit

Permalink
Fix linting.
Browse files Browse the repository at this point in the history
  • Loading branch information
morriscb committed Sep 9, 2020
1 parent 16c9fc4 commit b28abb4
Showing 1 changed file with 6 additions and 5 deletions.
11 changes: 6 additions & 5 deletions python/lsst/ap/pipe/createApFakes.py
Original file line number Diff line number Diff line change
Expand Up @@ -116,9 +116,10 @@ class CreateRandomApFakesConfig(


class CreateRandomApFakesTask(PipelineTask):
"""Create and store a set of spatially uniform fakes over the sphere for
use in AP processing. Additionally assign random magnitudes to said
fakes.
"""Create and store a set of spatially uniform star fakes over the sphere
for use in AP processing. Additionally assign random magnitudes to said
fakes and assign them to be inserted into either a visit exposure or
template exposure.
"""

_DefaultName = "createApFakes"
Expand Down Expand Up @@ -154,8 +155,8 @@ def run(self, tractId, skyMap):
nFakes = int(self.config.fakeDensity * tractArea)

self.log.info(
f"Creating {nFakes} over tractId={tractId} with BBox area: "
"{tractArea} deg^2")
f"Creating {nFakes} star fakes over tractId={tractId} with "
f"bounding circle area: {tractArea} deg^2")

# Concatenate the data and add dummy values for the unused variables.
# Set all data to PSF like objects.
Expand Down

0 comments on commit b28abb4

Please sign in to comment.