Skip to content

Commit

Permalink
Fix test regression
Browse files Browse the repository at this point in the history
  • Loading branch information
WilliamJamieson committed Jan 24, 2025
1 parent bf7811f commit 0677ff1
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 3 deletions.
3 changes: 1 addition & 2 deletions gwcs/wcs/_pipeline.py
Original file line number Diff line number Diff line change
Expand Up @@ -79,8 +79,7 @@ def _initialize_pipeline(
if isinstance(forward_transform, Model):
if output_frame is None:
msg = (
"An output_frame must be specified "
"if forward_transform is a model."
"An output_frame must be specified if forward_transform is a model."
)
raise CoordinateFrameError(msg)

Expand Down
2 changes: 1 addition & 1 deletion gwcs/wcs/_wcs.py
Original file line number Diff line number Diff line change
Expand Up @@ -1149,7 +1149,7 @@ def __str__(self):

def __repr__(self):
return (
f"<WCS(output_frame={self.output_frame}, input_frame={self.input_frame},"
f"<WCS(output_frame={self.output_frame}, input_frame={self.input_frame}, "
f"forward_transform={self.forward_transform})>"
)

Expand Down

0 comments on commit 0677ff1

Please sign in to comment.