diff --git a/sqil_core/utils/analysis.py b/sqil_core/utils/analysis.py index 0971e69..5e5b2ec 100644 --- a/sqil_core/utils/analysis.py +++ b/sqil_core/utils/analysis.py @@ -26,7 +26,7 @@ def remove_offset(data: np.ndarray, avg: int = 3) -> np.ndarray: def estimate_linear_background(x: np.ndarray, data: np.ndarray, points_cut=0.1) -> list: - """Estimates a linear background hihi""" + """Estimates a linear background hihi hoho""" is1D = len(data.shape) == 1 points = data.shape[0] if is1D else data.shape[1] cut = int(points * points_cut)