Skip to content

Commit

Permalink
Update docstring Notes to gen3 API
Browse files Browse the repository at this point in the history
  • Loading branch information
MorganSchmitz committed Jun 11, 2021
1 parent e587a14 commit 086c2ba
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion python/lsst/meas/algorithms/brightStarStamps.py
Original file line number Diff line number Diff line change
Expand Up @@ -181,7 +181,7 @@ class BrightStarStamps(StampsBase):
A butler can be used to read only a part of the stamps, specified by a
bbox:
>>> starSubregions = butler.get("brightStarStamps_sub", dataId, bbox=bbox)
>>> starSubregions = butler.get("brightStarStamps", dataId, parameters={'bbox': bbox})
"""

def __init__(self, starStamps, innerRadius=None, outerRadius=None,
Expand Down
2 changes: 1 addition & 1 deletion python/lsst/meas/algorithms/stamps.py
Original file line number Diff line number Diff line change
Expand Up @@ -292,7 +292,7 @@ class StampsBase(abc.ABC, Sequence):
A butler can be used to read only a part of the stamps,
specified by a bbox:
>>> starSubregions = butler.get("brightStarStamps_sub", dataId, bbox=bbox)
>>> starSubregions = butler.get("brightStarStamps", dataId, parameters={'bbox': bbox})
"""

def __init__(self, stamps, metadata=None, use_mask=True, use_variance=True,
Expand Down

0 comments on commit 086c2ba

Please sign in to comment.