Skip to content

Commit

Permalink
Cleanup docstrings
Browse files Browse the repository at this point in the history
This isn't always the psfFlux; it depends on the configured flux field.
  • Loading branch information
parejkoj committed Sep 19, 2023
1 parent 4373379 commit 995c10a
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions python/lsst/meas/algorithms/objectSizeStarSelector.py
Original file line number Diff line number Diff line change
Expand Up @@ -48,13 +48,13 @@ class ObjectSizeStarSelectorConfig(BaseSourceSelectorTask.ConfigClass):
default=False,
)
fluxMin = pexConfig.Field(
doc="Minimum psfFlux for good Psf Candidates",
doc="Minimum flux value for good Psf Candidates.",
dtype=float,
default=12500.0,
check=lambda x: x >= 0.0,
)
fluxMax = pexConfig.Field(
doc="Maximum psfFlux for good Psf Candidates (ignored if == 0)",
doc="Maximum flux value for good Psf Candidates (ignored if == 0).",
dtype=float,
default=0.0,
check=lambda x: x >= 0.0,
Expand Down

0 comments on commit 995c10a

Please sign in to comment.