Coverage for python/lsst/pipe/tasks/configurableActions.py: 100%
3 statements
« prev ^ index » next coverage.py v7.2.5, created at 2023-05-13 02:56 -0700
« prev ^ index » next coverage.py v7.2.5, created at 2023-05-13 02:56 -0700
1import warnings
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)
12from lsst.pex.config.configurableActions import * # noqa: F401 E402, F403