Skip to content

Commit

Permalink
remove print
Browse files Browse the repository at this point in the history
  • Loading branch information
Michael Blanton committed Oct 20, 2023
1 parent 70c5fb5 commit f117e2a
Showing 1 changed file with 0 additions and 1 deletion.
1 change: 0 additions & 1 deletion src/kcorrect/response.py
Original file line number Diff line number Diff line change
Expand Up @@ -284,7 +284,6 @@ def fromdat(self, filename=None):
raise ValueError("No response file: {f}".format(f=infilename))
dat = astropy.io.ascii.read(infilename, format='fixed_width')
self.nwave = len(dat)
print(dat.dtype.names)
isort = np.argsort(dat['lambda'])
self.wave = dat['lambda'][isort]
self.response = dat['pass'][isort]
Expand Down

0 comments on commit f117e2a

Please sign in to comment.