From 142e27671c2137c058574b29d1765a223e212d15 Mon Sep 17 00:00:00 2001 From: Steve Goldman <32876747+s-goldman@users.noreply.github.com> Date: Tue, 22 Aug 2023 10:42:53 -0400 Subject: [PATCH] removed print statement --- src/stcal/alignment/reproject.py | 1 - 1 file changed, 1 deletion(-) diff --git a/src/stcal/alignment/reproject.py b/src/stcal/alignment/reproject.py index 068da5cd..daf9a786 100644 --- a/src/stcal/alignment/reproject.py +++ b/src/stcal/alignment/reproject.py @@ -79,7 +79,6 @@ def _reproject(x: Union[str, np.ndarray], y: Union[str, np.ndarray]) -> tuple: x = [x] if not isinstance(y, list): y = [y] - print(x) if len(x) != len(y): raise ValueError("x and y must be the same length") sky = _get_forward_transform_func(wcs1)(x, y, 0)