Coverage for python/lsst/pipe/tasks/configurableActions.py: 100%

3 statements  

« prev     ^ index     » next       coverage.py v7.2.7, created at 2023-08-06 03:30 +0000

1import warnings 

2 

3warnings.warn( 

4 "lsst.pipe.tasks.configurableActions is deprecated; " 

5 "it has been moved to lsst.pex.config.configurableActions. " 

6 "Accessing though lsst.pipe.tasks will be removed from " 

7 "Science Pipelines after release 26.0.0", 

8 stacklevel=2, # Issue warning from caller. 

9 category=FutureWarning 

10) 

11 

12from lsst.pex.config.configurableActions import * # noqa: F401 E402, F403