From ed738b19e5aa7ea7970c31e21cbfc2a38ea90c0b Mon Sep 17 00:00:00 2001 From: Erfan Nourbakhsh Date: Wed, 12 Apr 2023 14:33:03 -0400 Subject: [PATCH] Remove unnecessary condition --- python/lsst/meas/base/forcedPhotCoadd.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/python/lsst/meas/base/forcedPhotCoadd.py b/python/lsst/meas/base/forcedPhotCoadd.py index a9c87bfc..a558940c 100644 --- a/python/lsst/meas/base/forcedPhotCoadd.py +++ b/python/lsst/meas/base/forcedPhotCoadd.py @@ -227,7 +227,7 @@ def runQuantum(self, butlerQC, inputRefs, outputRefs): footprintData) outputs = self.run(**inputs) # Strip HeavyFootprints to save space on disk - if self.config.footprintDatasetName == "ScarletModelData" and self.config.doStripFootprints: + if self.config.doStripFootprints: sources = outputs.measCat for source in sources[sources["parent"] != 0]: source.setFootprint(None)