Skip to content

Commit

Permalink
removed print statement
Browse files Browse the repository at this point in the history
  • Loading branch information
s-goldman committed Aug 22, 2023
1 parent 474d917 commit 142e276
Showing 1 changed file with 0 additions and 1 deletion.
1 change: 0 additions & 1 deletion src/stcal/alignment/reproject.py
Original file line number Diff line number Diff line change
Expand Up @@ -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)
Expand Down

0 comments on commit 142e276

Please sign in to comment.