diff --git a/doc/api/next_api_changes/removals/26900-jf.rst b/doc/api/next_api_changes/removals/26900-jf.rst new file mode 100644 index 000000000000..5f14c1543ad8 --- /dev/null +++ b/doc/api/next_api_changes/removals/26900-jf.rst @@ -0,0 +1,4 @@ +``passthru_pt`` +~~~~~~~~~~~~~~~ + +This attribute of ``AxisArtistHelper``\s has been removed. diff --git a/lib/mpl_toolkits/axisartist/axislines.py b/lib/mpl_toolkits/axisartist/axislines.py index e61c9a9fa8c3..cbcdefe38f7c 100644 --- a/lib/mpl_toolkits/axisartist/axislines.py +++ b/lib/mpl_toolkits/axisartist/axislines.py @@ -112,10 +112,6 @@ def _to_xy(self, values, const): class _FixedAxisArtistHelperBase(_AxisArtistHelperBase): """Helper class for a fixed (in the axes coordinate) axis.""" - passthru_pt = _api.deprecated("3.7")(property( - lambda self: {"left": (0, 0), "right": (1, 0), - "bottom": (0, 0), "top": (0, 1)}[self._loc])) - @_api.delete_parameter("3.9", "nth_coord") def __init__(self, loc, nth_coord=None): """``nth_coord = 0``: x-axis; ``nth_coord = 1``: y-axis."""