From 9b4230dc8393665b4cf5b3ce0740e628e90f1882 Mon Sep 17 00:00:00 2001 From: Dang Thoai Phan <82931854+phandangthoai@users.noreply.github.com> Date: Tue, 5 Aug 2025 09:31:06 +0200 Subject: [PATCH 1/2] one word change This PR is to get trusted contributor badge as rgommers suggested. --- pywt/_cwt.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pywt/_cwt.py b/pywt/_cwt.py index 91cde0f6..55f5540e 100644 --- a/pywt/_cwt.py +++ b/pywt/_cwt.py @@ -105,7 +105,7 @@ def cwt(data, scales, wavelet, sampling_period=1., method='conv', axis=-1, >>> plt.show() """ - # accept array_like input; make a copy to ensure a contiguous array + # accept array like input; make a copy to ensure a contiguous array dt = _check_dtype(data) data = np.asarray(data, dtype=dt) dt_cplx = np.result_type(dt, np.complex64) From fabf968179283830975cf04d5244cf41e11def5f Mon Sep 17 00:00:00 2001 From: Ralf Gommers Date: Tue, 5 Aug 2025 11:20:44 +0200 Subject: [PATCH 2/2] Update pywt/_cwt.py [skip ci] --- pywt/_cwt.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pywt/_cwt.py b/pywt/_cwt.py index 55f5540e..511582c7 100644 --- a/pywt/_cwt.py +++ b/pywt/_cwt.py @@ -105,7 +105,7 @@ def cwt(data, scales, wavelet, sampling_period=1., method='conv', axis=-1, >>> plt.show() """ - # accept array like input; make a copy to ensure a contiguous array + # accept array-like input; make a copy to ensure a contiguous array dt = _check_dtype(data) data = np.asarray(data, dtype=dt) dt_cplx = np.result_type(dt, np.complex64)