Files
zenml/venv/lib/python3.9/site-packages/mpl_toolkits/axisartist/parasite_axes.py
Christian Mantha 2ca0b9ef7c star
2026-03-02 19:10:52 -05:00

8 lines
244 B
Python

from mpl_toolkits.axes_grid1.parasite_axes import (
host_axes_class_factory, parasite_axes_class_factory)
from .axislines import Axes
ParasiteAxes = parasite_axes_class_factory(Axes)
HostAxes = SubplotHost = host_axes_class_factory(Axes)