School/.venv/lib/python3.9/site-packages/mpl_toolkits/axisartist/parasite_axes.py
Kristofers Solo dba6dee19e Updated .venv
2021-11-22 17:35:39 +02:00

13 lines
500 B
Python

from matplotlib import _api
from mpl_toolkits.axes_grid1.parasite_axes import (
host_axes_class_factory, parasite_axes_class_factory,
parasite_axes_auxtrans_class_factory, subplot_class_factory)
from .axislines import Axes
ParasiteAxes = parasite_axes_class_factory(Axes)
HostAxes = host_axes_class_factory(Axes)
SubplotHost = subplot_class_factory(HostAxes)
with _api.suppress_matplotlib_deprecation_warning():
ParasiteAxesAuxTrans = parasite_axes_auxtrans_class_factory(ParasiteAxes)