10 lines
237 B
Python
10 lines
237 B
Python
|
import warnings
|
||
|
|
||
|
from .grayreconstruct import reconstruction
|
||
|
|
||
|
warnings.warn(
|
||
|
"Importing from skimage.morphology.greyreconstruct is deprecated. "
|
||
|
"Please import from skimage.morphology instead.",
|
||
|
FutureWarning, stacklevel=2
|
||
|
)
|