From 8679d068453a6d0962d9dea04f028b38879d8def Mon Sep 17 00:00:00 2001 From: "Xavier C. Llano" Date: Tue, 29 Aug 2023 15:24:16 -0700 Subject: [PATCH] Fix typo --- stack_composed/stats.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/stack_composed/stats.py b/stack_composed/stats.py index 0de273f..bed4558 100644 --- a/stack_composed/stats.py +++ b/stack_composed/stats.py @@ -196,7 +196,7 @@ def preproc_function(chunks): return chunks return preproc_function - if self.preproc_arg.startswith('percentiles_'): + if self.preproc_arg.startswith('percentile_'): def preproc_function(chunks): lower = int(self.preproc_arg.split('_')[1]) upper = int(self.preproc_arg.split('_')[2])