-
-
Notifications
You must be signed in to change notification settings - Fork 7.9k
Fix most instances of D404 ("docstring should not start with 'this'"). #17148
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
Conversation
lib/matplotlib/axes/_base.py
Outdated
This method can only be used after an initial draw which | ||
caches the renderer. It is used to efficiently update Axes | ||
data (axis ticks, labels, etc are not updated). | ||
It is used to efficiently redraw Axes data (axis ticks, labels, etc., |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
It is used to efficiently redraw Axes data (axis ticks, labels, etc., | |
Efficiently redraw Axes data (axis ticks, labels, etc., |
@@ -1026,9 +1026,9 @@ def Destroy(self, *args, **kwargs): | |||
|
|||
class FigureManagerWx(FigureManagerBase): | |||
""" | |||
This class contains the FigureCanvas and GUI frame | |||
A class contains the FigureCanvas and GUI frame. |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
A class contains the FigureCanvas and GUI frame. | |
Container/controller for the FigureCanvas and the GUI frame. |
lib/matplotlib/quiver.py
Outdated
This function actually creates the wind barbs. *u* and *v* | ||
are components of the vector in the *x* and *y* directions, | ||
respectively. | ||
Actually creates the wind barbs. |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Actually creates the wind barbs. | |
Create wind barbs. |
lib/matplotlib/tight_bbox.py
Outdated
@@ -1,5 +1,5 @@ | |||
""" | |||
This module is to support the *bbox_inches* parameter in `.Figure.savefig`. | |||
Support module for the *bbox_inches* parameter in `.Figure.savefig`. |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Support module for the *bbox_inches* parameter in `.Figure.savefig`. | |
Helper module for the *bbox_inches* parameter in `.Figure.savefig`. |
I have the impression that "helper module" is more common than "support module", but not sure.
lib/matplotlib/transforms.py
Outdated
The base class of all bounding boxes, which provides read-only access | ||
to its data. A mutable bounding box is provided by the `Bbox` class. |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
The base class of all bounding boxes, which provides read-only access | |
to its data. A mutable bounding box is provided by the `Bbox` class. | |
The base class of all bounding boxes. | |
This box is immutable. See `Bbox` for a mutable bounding box. |
... and associated rewordings.
thanks, all handled. |
... and associated rewordings.
(xref #17145 (comment)).
PR Summary
PR Checklist