From 0d0a9bac4a5a67934d6d40ebac593d20258eaf97 Mon Sep 17 00:00:00 2001 From: Jim Bosch Date: Wed, 9 Oct 2024 15:31:52 -0400 Subject: [PATCH] Drop errant commas in docstring concatenation. --- python/lsst/pipe/tasks/makeWarp.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/python/lsst/pipe/tasks/makeWarp.py b/python/lsst/pipe/tasks/makeWarp.py index 67e54785c..2007fab9a 100644 --- a/python/lsst/pipe/tasks/makeWarp.py +++ b/python/lsst/pipe/tasks/makeWarp.py @@ -77,14 +77,14 @@ class MakeWarpConnections(pipeBase.PipelineTaskConnections, dimensions=("skymap",), ) direct = connectionTypes.Output( - doc=("Output direct warped exposure (previously called CoaddTempExp), produced by resampling ", + doc=("Output direct warped exposure (previously called CoaddTempExp), produced by resampling " "calexps onto the skyMap patch geometry."), name="{coaddName}Coadd_directWarp", storageClass="ExposureF", dimensions=("tract", "patch", "skymap", "visit", "instrument"), ) psfMatched = connectionTypes.Output( - doc=("Output PSF-Matched warped exposure (previously called CoaddTempExp), produced by resampling ", + doc=("Output PSF-Matched warped exposure (previously called CoaddTempExp), produced by resampling " "calexps onto the skyMap patch geometry and PSF-matching to a model PSF."), name="{coaddName}Coadd_psfMatchedWarp", storageClass="ExposureF",