File tree 2 files changed +0
-4
lines changed
2 files changed +0
-4
lines changed Original file line number Diff line number Diff line change @@ -98,7 +98,6 @@ class TransformNode:
98
98
# Some metadata about the transform, used to determine whether an
99
99
# invalidation is affine-only
100
100
is_affine = False
101
- is_bbox = _api .deprecated ("3.9" )(_api .classproperty (lambda cls : False ))
102
101
103
102
pass_through = False
104
103
"""
@@ -216,7 +215,6 @@ class BboxBase(TransformNode):
216
215
and height, but these are not stored explicitly.
217
216
"""
218
217
219
- is_bbox = _api .deprecated ("3.9" )(_api .classproperty (lambda cls : True ))
220
218
is_affine = True
221
219
222
220
if DEBUG :
Original file line number Diff line number Diff line change @@ -12,7 +12,6 @@ class TransformNode:
12
12
INVALID_NON_AFFINE : int
13
13
INVALID_AFFINE : int
14
14
INVALID : int
15
- is_bbox : bool
16
15
# Implemented as a standard attr in base class, but functionally readonly and some subclasses implement as such
17
16
@property
18
17
def is_affine (self ) -> bool : ...
@@ -24,7 +23,6 @@ class TransformNode:
24
23
def frozen (self ) -> TransformNode : ...
25
24
26
25
class BboxBase (TransformNode ):
27
- is_bbox : bool
28
26
is_affine : bool
29
27
def frozen (self ) -> Bbox : ...
30
28
def __array__ (self , * args , ** kwargs ): ...
You can’t perform that action at this time.
0 commit comments