Skip to content

Commit 824a532

Browse files
Merge pull request #1116 from lsst/tickets/DM-44792
DM-44792: Remove matchingKernelSize
2 parents e35a860 + 4a598f7 commit 824a532

1 file changed

Lines changed: 0 additions & 11 deletions

File tree

python/lsst/pipe/tasks/coaddBase.py

Lines changed: 0 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -74,17 +74,6 @@ class CoaddBaseConfig(pexConfig.Config):
7474
default=False,
7575
deprecated="Deprecated and ignored. Will be removed after v29.",
7676
)
77-
# TODO: Remove this field in DM-44792.
78-
matchingKernelSize = pexConfig.Field(
79-
dtype=int,
80-
doc="Size in pixels of matching kernel. Must be odd.",
81-
default=None,
82-
optional=True,
83-
check=lambda x: x % 2 == 1,
84-
deprecated=("This field is deprecated without a replacement. Its value has no effect. "
85-
"Will be removed after v29."
86-
),
87-
)
8877

8978

9079
class CoaddBaseTask(pipeBase.PipelineTask):

0 commit comments

Comments
 (0)