-
Notifications
You must be signed in to change notification settings - Fork 14
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-34332: Document ip_isr #243
base: main
Are you sure you want to change the base?
Conversation
5d62587
to
a69acfa
Compare
python/lsst/ip/isr/ampOffset.py
Outdated
@@ -27,9 +27,13 @@ | |||
from lsst.meas.algorithms import (SubtractBackgroundTask, SourceDetectionTask) | |||
|
|||
|
|||
__all__ = ['AmpOffsetConfig', 'AmpOffsetTask'] |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Doesn't main already have this change (but with different quotes)?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
(Ah, I see that the main one is a few lines above this -- the __all__
should always be before the first import)
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
It looks like the additions happened in parallel on different tickets, and I didn't notice in the diff because they're separated. I'll go through and clean up the extras throughout.
python/lsst/ip/isr/isrQa.py
Outdated
@@ -27,6 +27,9 @@ | |||
import lsst.pex.config as pexConfig | |||
|
|||
|
|||
__all__ = ['IsrQaFlatnessConfig', 'IsrQaConfig', 'makeThumbnail'] |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
This one is also duplicating one that is higher up the file. I'll stop commenting about them now since you should be able to find ones that have multiple __all__
in a single file.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
It was all done in #227.
f5dfc86
to
6f9cbc7
Compare
Update ancient docstrings to modern format. Fix some remaining typos. Populate
doc/
tree.