Files
tmhr/venv/lib/python3.10/site-packages/ipykernel/pylab/config.py
2024-02-23 10:30:02 +00:00

15 lines
372 B
Python

"""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] # analysis: ignore
warnings.warn(
"`ipykernel.pylab.config` is deprecated, directly use `matplotlib_inline.config`",
DeprecationWarning,
stacklevel=2,
)