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

Skip to content

Commit 0899658

Browse files
committed
PEP8: wrap line
1 parent 2b66c27 commit 0899658

1 file changed

Lines changed: 2 additions & 1 deletion

File tree

lib/matplotlib/axes/_axes.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2873,7 +2873,8 @@ def xywhere(xs, ys, mask):
28732873
plot_kw['markeredgewidth'] = capthick
28742874
# For backwards-compat, allow explicit setting of
28752875
# 'mew' or 'markeredgewidth' to over-ride capthick.
2876-
for key in ('markeredgewidth', 'mew', 'transform', 'alpha', 'zorder', 'rasterized'):
2876+
for key in ('markeredgewidth', 'mew', 'transform', 'alpha',
2877+
'zorder', 'rasterized'):
28772878
if key in kwargs:
28782879
plot_kw[key] = kwargs[key]
28792880

0 commit comments

Comments
 (0)