Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

DM-32901: Add Config classes to __all__ so they get documented. #57

Merged
merged 1 commit into from
Dec 10, 2021
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
2 changes: 1 addition & 1 deletion python/lsst/skymap/discreteSkyMap.py
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@
# see <http://www.lsstcorp.org/LegalNotices/>.
#

__all__ = ["DiscreteSkyMap"]
__all__ = ["DiscreteSkyMapConfig", "DiscreteSkyMap"]

import struct

Expand Down
6 changes: 4 additions & 2 deletions python/lsst/skymap/tractBuilder.py
Original file line number Diff line number Diff line change
Expand Up @@ -18,8 +18,10 @@
# the GNU General Public License along with this program. If not,
# see <http://www.lsstcorp.org/LegalNotices/>.
#
__all__ = ["tractBuilderRegistry", "BaseTractBuilder",
"LegacyTractBuilder", "CellTractBuilder"]
__all__ = ["tractBuilderRegistry",
"BaseTractBuilderConfig", "BaseTractBuilder",
"LegacyTractBuilderConfig", "LegacyTractBuilder",
"CellTractBuilderConfig", "CellTractBuilder"]

import abc
import numbers
Expand Down