8000 Update docstrings of get_{view,data}_interval. by anntzer · Pull Request #21427 · matplotlib/matplotlib · GitHub
[go: up one dir, main page]

Skip to content

Update docstrings of get_{view,data}_interval. #21427

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
Oct 23, 2021
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
4 changes: 2 additions & 2 deletions lib/matplotlib/axis.py
Original file line number Diff line number Diff line change
Expand Up @@ -938,7 +938,7 @@ def set_clip_path(self, clippath, transform=None):
self.stale = True

def get_view_interval(self):
"""Return the view limits ``(min, max)`` of this axis."""
"""Return the ``(min, max)`` view limits of this axis."""
raise NotImplementedError('Derived must override')

def set_view_interval(self, vmin, vmax, ignore=False):
Expand All @@ -957,7 +957,7 @@ def set_view_interval(self, vmin, vmax, ignore=False):
raise NotImplementedError('Derived must override')

def get_data_interval(self):
"""Return the Interval instance for this axis data limits."""
"""Return the ``(min, max)`` data limits of this axis."""
raise NotImplementedError('Derived must override')

def set_data_interval(self, vmin, vmax, ignore=False):
Expand Down
0