Skip to content

Commit a6c59f7

Browse files
committed
Merge pull request matplotlib#1283 from cgohlke/patch-11
Fix tripcolor with shading='faceted'
2 parents 1816cdf + 4a0bd60 commit a6c59f7

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

lib/matplotlib/tri/tripcolor.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -93,7 +93,7 @@ def tripcolor(ax, *args, **kwargs):
9393
kwargs.setdefault('linewidths', linewidths)
9494

9595
if shading == 'faceted': # Deprecated.
96-
edgecolors = 'k',
96+
edgecolors = 'k'
9797
else:
9898
edgecolors = 'none'
9999
if 'edgecolor' in kwargs:

0 commit comments

Comments
 (0)