There was an error while loading. Please reload this page.
1 parent 6114c48 commit 0f6bcd1Copy full SHA for 0f6bcd1
1 file changed
lib/matplotlib/axes/_axes.py
@@ -4376,7 +4376,9 @@ def scatter(self, x, y, s=None, c=None, marker=None, cmap=None, norm=None,
4376
"or float array-like with the same size as x and y")
4377
4378
# get the original edgecolor the user passed before we normalize
4379
- orig_edgecolor = edgecolors or kwargs.get('edgecolor', None)
+ orig_edgecolor = (edgecolors
4380
+ if edgecolors is not None
4381
+ else kwargs.get('edgecolor', None))
4382
c, colors, edgecolors = \
4383
self._parse_scatter_color_args(
4384
c, edgecolors, kwargs, x.size,
0 commit comments