Thanks to visit codestin.com
Credit goes to github.com

Skip to content

Commit 981aeb5

Browse files
committed
Wrap trailing words to comply with flake8.
1 parent 58cd28d commit 981aeb5

File tree

1 file changed

+8
-4
lines changed

1 file changed

+8
-4
lines changed

lib/matplotlib/markers.py

Lines changed: 8 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -218,9 +218,11 @@ def __init__(self, marker=None, fillstyle=None):
218218
Parameters
219219
----------
220220
marker : str, array-like, Path, MarkerStyle, or None, default: None
221-
- Another instance of *MarkerStyle* copies the details of that ``marker``.
221+
- Another instance of *MarkerStyle* copies the details of that
222+
``marker``.
222223
- *None* means no marker.
223-
- For other possible marker values see the module docstring `matplotlib.markers`.
224+
- For other possible marker values see the module docstring
225+
`matplotlib.markers`.
224226
225227
fillstyle : str, default: 'full'
226228
One of 'full', 'left', 'right', 'bottom', 'top', 'none'.
@@ -286,9 +288,11 @@ def set_marker(self, marker):
286288
Parameters
287289
----------
288290
marker : str, array-like, Path, MarkerStyle, or None, default: None
289-
- Another instance of *MarkerStyle* copies the details of that ``marker``.
291+
- Another instance of *MarkerStyle* copies the details of that
292+
``marker``.
290293
- *None* means no marker.
291-
- For other possible marker values see the module docstring `matplotlib.markers`.
294+
- For other possible marker values see the module docstring
295+
`matplotlib.markers`.
292296
"""
293297
if (isinstance(marker, np.ndarray) and marker.ndim == 2 and
294298
marker.shape[1] == 2):

0 commit comments

Comments
 (0)