From b8a34b7bf1af68ee7f475103a7aa2e0acaa0fb8c Mon Sep 17 00:00:00 2001 From: Lars Bonnefoy Date: Tue, 23 Jun 2026 10:34:09 +0200 Subject: [PATCH] fix: removed hardcoded conditional=True for noise statistic computation --- pysteps/blending/steps.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pysteps/blending/steps.py b/pysteps/blending/steps.py index fc1530f0..3f8c0b60 100644 --- a/pysteps/blending/steps.py +++ b/pysteps/blending/steps.py @@ -1437,7 +1437,7 @@ def __initialize_noise(self): self.__params.perturbation_generator, self.__params.noise_generator, 20, - conditional=True, + conditional=self.__config.conditional, num_workers=self.__config.num_workers, seed=self.__config.seed, )