Skip to content

Commit

Permalink
Merge pull request #37 from lsst/tickets/DM-11653
Browse files Browse the repository at this point in the history
Change string nan to real nan
  • Loading branch information
mfisherlevine committed Oct 3, 2017
2 parents 8a3047b + a564898 commit e2e8732
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion python/lsst/pipe/drivers/constructCalibs.py
Original file line number Diff line number Diff line change
Expand Up @@ -897,7 +897,7 @@ def scale(self, ccdIdLists, data):
d if d is not None else np.nan for d in data[name]]

numpyPrint = np.get_printoptions()
np.set_printoptions(threshold='nan')
np.set_printoptions(threshold=np.inf)
self.log.info("Input backgrounds: %s" % bgMatrix)

# Flat-field scaling
Expand Down

0 comments on commit e2e8732

Please sign in to comment.