From db74b7c9f0f7cf386e0484d2919194b007af4c5b Mon Sep 17 00:00:00 2001 From: Arvin Kushwaha Date: Sat, 2 Mar 2024 23:32:26 -0500 Subject: [PATCH] Added `NotImplementedError` to the function `fourier_transform`'s body to signify to users that the function is not implemented yet instead of using ellipses as placeholder. --- src/sumaq/response_function/spectral_analysis.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/sumaq/response_function/spectral_analysis.py b/src/sumaq/response_function/spectral_analysis.py index 309760c..d396c65 100644 --- a/src/sumaq/response_function/spectral_analysis.py +++ b/src/sumaq/response_function/spectral_analysis.py @@ -29,7 +29,8 @@ def __init__( ) def fourier_transform(self) -> tuple[NDArray, NDArray]: - ... + """This function is currently in development.""" + raise NotImplementedError() def locate_peaks( self, min_height: float = 0.1, min_threshold: float = 1e2