From b8219c039061226e280baa50a2881862af22065b Mon Sep 17 00:00:00 2001 From: Daniel Cox Date: Wed, 2 Oct 2024 18:01:57 +0200 Subject: [PATCH] Fix type --- openwfs/algorithms/dual_reference.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/openwfs/algorithms/dual_reference.py b/openwfs/algorithms/dual_reference.py index 8ac2703..3fd0283 100644 --- a/openwfs/algorithms/dual_reference.py +++ b/openwfs/algorithms/dual_reference.py @@ -131,7 +131,7 @@ def amplitude(self, value): "The amplitude and group mask must all have the same shape." ) - self._amplitude = value.astype(np.float32) + self._amplitude = value @property