Uh oh!
There was an error while loading.Please reload this page.
- Notifications
You must be signed in to change notification settings - Fork7.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 ourterms of service andprivacy statement. We’ll occasionally send you account related emails.
Already on GitHub?Sign in to your account
Uh oh!
There was an error while loading.Please reload this page.
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.
ItisusedtoefficientlyredrawAxesdata (axisticks,labels,etc., | |
EfficientlyredrawAxesdata (axisticks,labels,etc., |
@@ -1026,9 +1026,9 @@ def Destroy(self, *args, **kwargs): | |||
classFigureManagerWx(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.
AclasscontainstheFigureCanvasandGUIframe. | |
Container/controllerfortheFigureCanvasandtheGUIframe. |
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.
Actuallycreatesthewindbarbs. | |
Createwindbarbs. |
lib/matplotlib/tight_bbox.py Outdated
@@ -1,5 +1,5 @@ | |||
""" | |||
This moduleis to support the *bbox_inches* parameter in `.Figure.savefig`. | |||
Support modulefor 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.
Supportmoduleforthe*bbox_inches*parameterin`.Figure.savefig`. | |
Helpermoduleforthe*bbox_inches*parameterin`.Figure.savefig`. |
I have the impression that "helper module" is more common than "support module", but not sure.
lib/matplotlib/transforms.py Outdated
Thebase 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.
Thebaseclassofallboundingboxes,whichprovidesread-onlyaccess | |
toitsdata.Amutableboundingboxisprovidedbythe`Bbox`class. | |
Thebaseclassofallboundingboxes. | |
Thisboxisimmutable.See`Bbox`foramutableboundingbox. |
... and associated rewordings.
thanks, all handled. |
... and associated rewordings.
(xref#17145 (comment)).
PR Summary
PR Checklist