From 855a31cf05944a46b0479bc0282c6f2da757be49 Mon Sep 17 00:00:00 2001 From: Audrey Budlong Date: Thu, 5 Dec 2024 18:33:37 -0800 Subject: [PATCH] Rename "flags_negative" to "is_negative" --- python/lsst/meas/algorithms/detection.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/python/lsst/meas/algorithms/detection.py b/python/lsst/meas/algorithms/detection.py index d67c81bcc..deace04ea 100644 --- a/python/lsst/meas/algorithms/detection.py +++ b/python/lsst/meas/algorithms/detection.py @@ -201,7 +201,7 @@ def __init__(self, schema=None, **kwds): pipeBase.Task.__init__(self, **kwds) if schema is not None and self.config.thresholdPolarity == "both": self.negativeFlagKey = schema.addField( - "flags_negative", type="Flag", + "is_negative", type="Flag", doc="set if source was detected as significantly negative" ) else: