From 55223f9323f30cb5d8fa1148ed3ab7182314e622 Mon Sep 17 00:00:00 2001 From: William Jamieson Date: Thu, 31 Oct 2024 10:21:24 -0400 Subject: [PATCH] Fix style fail --- gwcs/wcs.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/gwcs/wcs.py b/gwcs/wcs.py index 61947d4a..cb33eae8 100644 --- a/gwcs/wcs.py +++ b/gwcs/wcs.py @@ -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) ):