Skip to content

Commit

Permalink
Cleanup docstrings
Browse files Browse the repository at this point in the history
  • Loading branch information
parejkoj committed Jun 26, 2023
1 parent fe61ccb commit e323d22
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 deletions.
4 changes: 2 additions & 2 deletions python/lsst/meas/astrom/astrometry.py
Original file line number Diff line number Diff line change
Expand Up @@ -113,8 +113,8 @@ class AstrometryTask(RefMatchTask):
schema : `lsst.afw.table.Schema`
Used to set "calib_astrometry_used" flag in output source catalog.
**kwargs
additional keyword arguments for pipe_base
`lsst.pipe.base.Task.__init__`
Additional keyword arguments for pipe_base
`lsst.pipe.base.Task.__init__`.
"""
ConfigClass = AstrometryConfig
_DefaultName = "astrometricSolver"
Expand Down
6 changes: 3 additions & 3 deletions python/lsst/meas/astrom/ref_match.py
Original file line number Diff line number Diff line change
Expand Up @@ -89,7 +89,7 @@ class RefMatchTask(pipeBase.Task):
A reference object loader object; gen3 pipeline tasks will pass `None`
and call `setRefObjLoader` in `runQuantum`.
**kwargs
additional keyword arguments for pipe_base `lsst.pipe.base.Task`
Additional keyword arguments for pipe_base `lsst.pipe.base.Task`.
"""
ConfigClass = RefMatchConfig
_DefaultName = "calibrationBaseClass"
Expand All @@ -112,12 +112,12 @@ def __init__(self, refObjLoader=None, **kwargs):
self.makeSubtask("referenceSelector")

def setRefObjLoader(self, refObjLoader):
"""Sets the reference object loader for the task
"""Sets the reference object loader for the task.
Parameters
----------
refObjLoader
An instance of a reference object loader task or class
An instance of a reference object loader task or class.
"""
self.refObjLoader = refObjLoader

Expand Down

0 comments on commit e323d22

Please sign in to comment.