Skip to content

Commit

Permalink
Fix style fail
Browse files Browse the repository at this point in the history
  • Loading branch information
WilliamJamieson committed Nov 4, 2024
1 parent 3e329ea commit 55223f9
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions gwcs/wcs.py
Original file line number Diff line number Diff line change
Expand Up @@ -1294,9 +1294,9 @@ def bounding_box(self):

if (
# Check that the bounding_box was set on the instance (not a default)
transform_0._user_bounding_box is not None
transform_0._user_bounding_box is not None
# Check the order of that bounding_box is C
and bb.order == "C"
and bb.order == "C"
# Check that the bounding_box is not a single value
and (isinstance(bb, CompoundBoundingBox) or len(bb) > 1)
):
Expand Down

0 comments on commit 55223f9

Please sign in to comment.