Coverage for pesummary/core/plots/interpolate.py: 0.0%

7 statements  

« prev     ^ index     » next       coverage.py v7.4.4, created at 2025-11-05 13:38 +0000

1# Licensed under an MIT style license -- see LICENSE.md 

2 

3from pesummary.utils.decorators import deprecation 

4from pesummary.utils.interpolate import BoundedInterp1d 

5 

6__author__ = ["Charlie Hoy <charlie.hoy@ligo.org>"] 

7 

8 

9class Bounded_interp1d(BoundedInterp1d): 

10 @deprecation( 

11 "pesummary.core.plots.interpolate.Bounded_interp1d has changed to " 

12 "pesummary.utils.interpolate.BoundedInterp1d. This may not be supported " 

13 "in future releases. Please update." 

14 ) 

15 def __init__(self, *args, **kwargs): 

16 return super(Bounded_interp1d, self).__init__(*args, **kwargs)