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

6 statements  

« prev     ^ index     » next       coverage.py v7.4.4, created at 2024-05-02 08:42 +0000

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

2 

3from pesummary.utils.bounded_2d_kde import Bounded_2d_kde as _Bounded_2d_kde 

4from pesummary.utils.decorators import deprecation 

5 

6 

7class Bounded_2d_kde(_Bounded_2d_kde): 

8 @deprecation( 

9 "pesummary.core.plots.bounded_2d_kde.Bounded_2d_kde has changed to " 

10 "pesummary.utils.bounded_2d_kde.Bounded_2d_kde. This may not be " 

11 "supported in future releases. Please update." 

12 ) 

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

14 return super(Bounded_2d_kde, self).__init__(*args, **kwargs)