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

fix excessive line length. #5

Merged
merged 1 commit into from
Mar 11, 2016
Merged
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
10 changes: 6 additions & 4 deletions python/lsst/jointcal/jointcal.py
Original file line number Diff line number Diff line change
Expand Up @@ -96,10 +96,10 @@ class JointcalTask(pipeBase.CmdLineTask):

def __init__(self, *args, **kwargs):
pipeBase.Task.__init__(self, *args, **kwargs)
# self.makeSubtask("select")
# self.makeSubtask("select")

# We don't need to persist config and metadata at this stage. In this way, we don't need to put a specific entry in the
# camera mapper policy file
# We don't need to persist config and metadata at this stage.
# In this way, we don't need to put a specific entry in the camera mapper policy file
def _getConfigName(self):
return None

Expand Down Expand Up @@ -153,7 +153,9 @@ def run(self, ref, tract):
if len(newSrc) == 0 :
print("no source selected in ", dataRef.dataId["visit"], dataRef.dataId["ccd"])
continue
print("%d sources selected in visit %d - ccd %d"%(len(newSrc), dataRef.dataId["visit"], dataRef.dataId["ccd"]))
print("%d sources selected in visit %d - ccd %d"%(len(newSrc),
dataRef.dataId["visit"],
dataRef.dataId["ccd"]))

assoc.AddImage(newSrc, tanwcs, md, bbox, filt, calib,
dataRef.dataId['visit'], dataRef.dataId['ccd'],
Expand Down