config.py 355 B

1234567891011121314
  1. """Configurable for configuring the IPython inline backend
  2. This module does not import anything from matplotlib.
  3. """
  4. import warnings
  5. from matplotlib_inline.config import * # noqa: F403 # analysis: ignore
  6. warnings.warn(
  7. "`ipykernel.pylab.config` is deprecated, directly use `matplotlib_inline.config`",
  8. DeprecationWarning,
  9. stacklevel=2,
  10. )