Skip to content

Commit

Permalink
typo fix
Browse files Browse the repository at this point in the history
  • Loading branch information
chris-simpson committed Feb 23, 2021
1 parent 9b94af2 commit 443930f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion geminidr/core/primitives_spect.py
Original file line number Diff line number Diff line change
Expand Up @@ -1809,7 +1809,7 @@ def fluxCalibrate(self, adinputs=None, **params):
delta_airmass = 0

for index, ext in enumerate(ad):
ext_std = std[max(index, len_std-1)]
ext_std = std[min(index, len_std-1)]
extname = f"{ad.filename} extension {ext.id}"

# Create the correct callable function (we may want to
Expand Down

0 comments on commit 443930f

Please sign in to comment.