Skip to content

Commit

Permalink
Drop errant commas in docstring concatenation.
Browse files Browse the repository at this point in the history
  • Loading branch information
TallJimbo committed Oct 10, 2024
1 parent ae0b327 commit 142eaf9
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions python/lsst/pipe/tasks/makeWarp.py
Original file line number Diff line number Diff line change
Expand Up @@ -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",
Expand Down

0 comments on commit 142eaf9

Please sign in to comment.