8000 Remove unused Axis private init helpers. by anntzer · Pull Request #26787 · matplotlib/matplotlib · GitHub
[go: up one dir, main page]

Skip to content

Remove unused Axis private init helpers. #26787

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 1 commit into from
Sep 15, 2023
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
15 changes: 0 additions & 15 deletions lib/matplotlib/axis.py
Original file line number Diff line number Diff line change
Expand Up @@ -265,21 +265,6 @@ def get_pad(self):
"""Get the value of the tick label pad in points."""
return self._base_pad

def _get_text1(self):
"""Get the default Text 1 instance."""

def _get_text2(self):
"""Get the default Text 2 instance."""

def _get_tick1line(self):
"""Get the default `.Line2D` instance for tick1."""

def _get_tick2line(self):
"""Get the default `.Line2D` instance for tick2."""

def _get_gridline(self):
"""Get the default grid `.Line2D` instance for this tick."""

def get_loc(self):
"""Return the tick location (data coords) as a scalar."""
return self._loc
Expand Down
0