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

Skip to content

Commit 421b46a

Browse files
efiringanntzer
authored andcommitted
Update pyplot.py via boilerplate.py.
1 parent ecfba88 commit 421b46a

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

lib/matplotlib/pyplot.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -2835,12 +2835,12 @@ def quiverkey(Q, X, Y, U, label, **kw):
28352835
def scatter(
28362836
x, y, s=None, c=None, marker=None, cmap=None, norm=None,
28372837
vmin=None, vmax=None, alpha=None, linewidths=None, verts=None,
2838-
edgecolors=None, *, data=None, **kwargs):
2838+
edgecolors=None, plotinvalid=False, *, data=None, **kwargs):
28392839
__ret = gca().scatter(
28402840
x, y, s=s, c=c, marker=marker, cmap=cmap, norm=norm,
28412841
vmin=vmin, vmax=vmax, alpha=alpha, linewidths=linewidths,
2842-
verts=verts, edgecolors=edgecolors, **({"data": data} if data
2843-
is not None else {}), **kwargs)
2842+
verts=verts, edgecolors=edgecolors, plotinvalid=plotinvalid,
2843+
**({"data": data} if data is not None else {}), **kwargs)
28442844
sci(__ret)
28452845
return __ret
28462846

0 commit comments

Comments
 (0)