From c70be8a74fe34d282870c611b5d4886dc2b8fefa Mon Sep 17 00:00:00 2001 From: linarphy Date: Thu, 27 Jul 2023 12:16:51 +0200 Subject: [PATCH] Fix typo --- wavelength_calibration.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/wavelength_calibration.py b/wavelength_calibration.py index 11a19bb..a8d2d22 100644 --- a/wavelength_calibration.py +++ b/wavelength_calibration.py @@ -92,5 +92,5 @@ def only_keep_calib( peaks_data , peaks_calib ): return np.array( [ peaks_data[ i ] for i in peaks[ 1 : ] ], # remove the first -1 value - dtyp = int, + dtype = int, )