From a95cab7ca06a174496dcd4fea27f3bc5da57febd Mon Sep 17 00:00:00 2001 From: Arun Kannawadi Date: Mon, 10 Nov 2025 16:42:46 -0500 Subject: [PATCH 1/3] Call super() in setDefaults method --- python/lsst/pipe/tasks/drpDiaCalculationPipe.py | 1 + 1 file changed, 1 insertion(+) diff --git a/python/lsst/pipe/tasks/drpDiaCalculationPipe.py b/python/lsst/pipe/tasks/drpDiaCalculationPipe.py index 447e0da98..815e145fc 100644 --- a/python/lsst/pipe/tasks/drpDiaCalculationPipe.py +++ b/python/lsst/pipe/tasks/drpDiaCalculationPipe.py @@ -75,6 +75,7 @@ class DrpDiaCalculationPipeConfig( ) def setDefaults(self): + super().setDefaults() self.diaCalculation.plugins = ["ap_meanPosition", "ap_diaObjectFlag", "ap_meanFlux", From f99fb8fafcef2cfdb5c5541e0e5da67d7e7ca370 Mon Sep 17 00:00:00 2001 From: Arun Kannawadi Date: Mon, 10 Nov 2025 16:43:53 -0500 Subject: [PATCH 2/3] Call superclass setDefaults in repair task --- python/lsst/pipe/tasks/repair.py | 1 + 1 file changed, 1 insertion(+) diff --git a/python/lsst/pipe/tasks/repair.py b/python/lsst/pipe/tasks/repair.py index caf6d6649..0fc8469e5 100644 --- a/python/lsst/pipe/tasks/repair.py +++ b/python/lsst/pipe/tasks/repair.py @@ -81,6 +81,7 @@ class RepairConfig(pexConfig.Config): ) def setDefaults(self): + super().setDefaults() self.interp.useFallbackValueAtEdge = True self.interp.fallbackValueType = "MEANCLIP" self.interp.negativeFallbackAllowed = True From 41eacc32dd1ae104e908e81cacae6d0634eecbc6 Mon Sep 17 00:00:00 2001 From: Arun Kannawadi Date: Mon, 10 Nov 2025 16:44:37 -0500 Subject: [PATCH 3/3] Call super() in setDefaults method --- python/lsst/pipe/tasks/makeDiscreteSkyMap.py | 1 + 1 file changed, 1 insertion(+) diff --git a/python/lsst/pipe/tasks/makeDiscreteSkyMap.py b/python/lsst/pipe/tasks/makeDiscreteSkyMap.py index 0a302bacf..0833912ec 100644 --- a/python/lsst/pipe/tasks/makeDiscreteSkyMap.py +++ b/python/lsst/pipe/tasks/makeDiscreteSkyMap.py @@ -60,6 +60,7 @@ class MakeDiscreteSkyMapConfig(pexConfig.Config): ) def setDefaults(self): + super().setDefaults() self.skyMap.tractOverlap = 0.0