Skip to content

Commit

Permalink
review comments
Browse files Browse the repository at this point in the history
  • Loading branch information
SimonKrughoff committed May 30, 2016
1 parent 8e123a9 commit 8fc257f
Showing 1 changed file with 5 additions and 0 deletions.
5 changes: 5 additions & 0 deletions python/lsst/meas/algorithms/loadReferenceObjects.py
Original file line number Diff line number Diff line change
Expand Up @@ -172,6 +172,11 @@ class LoadReferenceObjectsTask(pipeBase.Task):
_DefaultName = "LoadReferenceObjects"

def __init__(self, butler=None, *args, **kwargs):
"""!Construct a LoadReferenceObjectsTask
@param[in] butler A daf.persistence.Butler object. This allows subclasses to use the butler to
access reference catalog files using the stack I/O abstraction scheme.
"""
pipeBase.Task.__init__(self, *args, **kwargs)
self.butler = butler

Expand Down

0 comments on commit 8fc257f

Please sign in to comment.