Skip to content

Commit

Permalink
Code style fix.
Browse files Browse the repository at this point in the history
  • Loading branch information
cmccully committed Nov 12, 2024
1 parent 126f298 commit 63b09e7
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion banzai_floyds/tests/test_extract.py
Original file line number Diff line number Diff line change
Expand Up @@ -86,7 +86,7 @@ def test_combined_extraction():
extracted_waves = np.arange(3000.0, 10000.0)
flux = np.ones(len(extracted_waves) * 2)
orders = np.hstack([np.ones(len(extracted_waves)), np.ones(len(extracted_waves)) * 2])
frame.extracted = Table({'wavelength': np.hstack([extracted_waves, extracted_waves]), 'flux': flux,
frame.extracted = Table({'wavelength': np.hstack([extracted_waves, extracted_waves]), 'flux': flux,
'order': orders})
stage = CombinedExtractor(input_context)
frame = stage.do_stage(frame)
Expand Down

0 comments on commit 63b09e7

Please sign in to comment.