Skip to content

Commit e6a5e2a

Browse files
author
Gabor Kovacs
committed
Manual documentation and __all__ updates following rebase to master.
See ticket comment on details.
1 parent 8e1ac2d commit e6a5e2a

16 files changed

+23
-31
lines changed

python/lsst/pipe/tasks/imageDifference.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -46,8 +46,8 @@
4646
FwhmPerSigma = 2 * math.sqrt(2 * math.log(2))
4747
IqrToSigma = 0.741
4848

49-
__all__ = ('ImageDifferenceConfig', 'ImageDifferenceTaskRunner',
50-
'Winter2013ImageDifferenceConfig', 'Winter2013ImageDifferenceTask')
49+
__all__ = ['ImageDifferenceConfig', 'ImageDifferenceTaskRunner',
50+
'Winter2013ImageDifferenceConfig', 'Winter2013ImageDifferenceTask']
5151

5252
class ImageDifferenceConfig(pexConfig.Config):
5353
"""Config for ImageDifferenceTask

python/lsst/pipe/tasks/ingest.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -12,8 +12,8 @@
1212
from lsst.pipe.base import Task, InputOnlyArgumentParser
1313
from lsst.afw.fits import DEFAULT_HDU
1414

15-
__all__ = ('IngestArgumentParser', 'ParseConfig', 'ParseConfig', 'ParseTask', 'RegisterConfig',
16-
'RegistryContext', 'RegisterTask', 'IngestConfig', 'IngestTask')
15+
__all__ = ['IngestArgumentParser', 'ParseConfig', 'ParseConfig', 'ParseTask', 'RegisterConfig',
16+
'RegistryContext', 'RegisterTask', 'IngestConfig', 'IngestTask']
1717

1818

1919
class IngestArgumentParser(InputOnlyArgumentParser):

python/lsst/pipe/tasks/ingestPgsql.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@
1010
except ImportError:
1111
havePgSql = False
1212

13-
__all__ = ('PgsqlRegistryContext', 'PgsqlRegisterTask', 'PgsqlIngestConfig', 'PgsqlIngestTask')
13+
__all__ = ['PgsqlRegistryContext', 'PgsqlRegisterTask', 'PgsqlIngestConfig', 'PgsqlIngestTask']
1414

1515

1616
class PgsqlRegistryContext(RegistryContext):

python/lsst/pipe/tasks/makeDiscreteSkyMap.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@
3030
from lsst.skymap import DiscreteSkyMap, BaseSkyMap
3131
from lsst.pipe.base import ArgumentParser
3232

33-
__all__ = ('MakeDiscreteSkyMapConfig', 'MakeDiscreteSkyMapRunner', 'MakeDiscreteSkyMapTask')
33+
__all__ = ['MakeDiscreteSkyMapConfig', 'MakeDiscreteSkyMapRunner', 'MakeDiscreteSkyMapTask']
3434

3535

3636
class MakeDiscreteSkyMapConfig(pexConfig.Config):

python/lsst/pipe/tasks/makeSkyMap.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@
2727
import lsst.pipe.base as pipeBase
2828
from lsst.skymap import skyMapRegistry
2929

30-
__all__ = ('MakeSkyMapConfig', 'MakeSkyMapRunner', 'MakeSkyMapTask')
30+
__all__ = ['MakeSkyMapConfig', 'MakeSkyMapRunner', 'MakeSkyMapTask']
3131

3232

3333
class MakeSkyMapConfig(pexConfig.Config):

python/lsst/pipe/tasks/matchBackgrounds.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@
2626
import lsst.pipe.base as pipeBase
2727
import lsstDebug
2828

29-
__all__ = ('MatchBackgroundsConfig', 'MatchBackgroundsTask', 'DataRefMatcher')
29+
__all__ = ['MatchBackgroundsConfig', 'MatchBackgroundsTask', 'DataRefMatcher']
3030

3131

3232
class MatchBackgroundsConfig(pexConfig.Config):

python/lsst/pipe/tasks/measurePsf.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@
2626
import lsst.pex.config as pexConfig
2727
import lsst.pipe.base as pipeBase
2828

29-
__all__ = ('MeasurePsfConfig', 'MeasurePsfTask')
29+
__all__ = ['MeasurePsfConfig', 'MeasurePsfTask']
3030

3131

3232
class MeasurePsfConfig(pexConfig.Config):

python/lsst/pipe/tasks/multiBand.py

Lines changed: 0 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,6 @@
3232
the mergeDet, meas, and ref dataset Footprints:
3333
- deepCoadd_peak_schema
3434
"""
35-
import numpy
3635

3736
from lsst.coadd.utils.coaddDataIdContainer import ExistingCoaddDataIdContainer
3837
from lsst.pipe.base import (CmdLineTask, Struct, ArgumentParser, ButlerInitializedTaskRunner,
@@ -59,11 +58,6 @@
5958
from .multiBandUtils import getInputSchema, getShortFilterName, readCatalog, _makeMakeIdFactory # noqa: F401
6059

6160

62-
63-
64-
65-
##############################################################################################################
66-
6761
class DetectCoaddSourcesConfig(Config):
6862
"""Configuration parameters for the DetectCoaddSourcesTask
6963
"""

python/lsst/pipe/tasks/objectMasks.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
import lsst.afw.table as afwTable
55
from lsst.log import Log
66

7-
__all__ = ('ObjectMaskCatalog',)
7+
__all__ = ['ObjectMaskCatalog',]
88

99

1010
class ObjectMaskCatalog:

python/lsst/pipe/tasks/repair.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@
2828
from lsst.afw.display import getDisplay
2929
from lsst.pipe.tasks.interpImage import InterpImageTask
3030

31-
__all__ = ('RepairConfig', 'RepairTask')
31+
__all__ = ['RepairConfig', 'RepairTask']
3232

3333

3434
class RepairConfig(pexConfig.Config):

0 commit comments

Comments
 (0)