From 2608a37121212efc274b6c05676f360692d45049 Mon Sep 17 00:00:00 2001 From: Ned Molter Date: Tue, 1 Oct 2024 13:13:09 -0400 Subject: [PATCH] missed one docstring improvement --- src/stcal/outlier_detection/median.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/stcal/outlier_detection/median.py b/src/stcal/outlier_detection/median.py index 2a408da1..b4fe5fec 100644 --- a/src/stcal/outlier_detection/median.py +++ b/src/stcal/outlier_detection/median.py @@ -115,8 +115,8 @@ def append(self, The data to append to the median computer. Must have shape full_shape[1:]. idx - The index at which to append the data. Required if using in-memory - median computation. + The index at which to append the data. Mus be between 0 and full_shape[0]. + Required if using in-memory median computation. """ if self.in_memory: if idx is None: