Skip to content

Commit

Permalink
Fix incorrect data type
Browse files Browse the repository at this point in the history
  • Loading branch information
parejkoj committed Mar 21, 2024
1 parent 2489c08 commit 9f5896c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion python/lsst/ip/diffim/dipoleFitTask.py
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,7 @@ class DipoleFitPluginConfig(measBase.SingleFramePluginConfig):
"""

fitAllDiaSources = pexConfig.Field(
dtype=float, default=False,
dtype=bool, default=False,
doc="""Attempte dipole fit of all diaSources (otherwise just the ones consisting of overlapping
positive and negative footprints)""")

Expand Down

0 comments on commit 9f5896c

Please sign in to comment.