File size: 385 Bytes
d1ceb73 |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 |
"""Configurable for configuring the IPython inline backend
This module does not import anything from matplotlib.
"""
import warnings
from matplotlib_inline.config import * # type:ignore[import-untyped] # noqa: F403 # analysis: ignore
warnings.warn(
"`ipykernel.pylab.config` is deprecated, directly use `matplotlib_inline.config`",
DeprecationWarning,
stacklevel=2,
)
|