Skip to content
Features
Business
Explore
Marketplace
Pricing
This repository
Sign in
or
Sign up
Watch
440
Star
5,571
Fork
2,666
matplotlib
/
matplotlib
Code
Issues
992
Pull requests
229
Projects
5
Wiki
Insights
Pulse
Graphs
Fix warning when setting markeredgecolor to a numpy array
#7657
Merged
QuLogic
merged 1 commit into
matplotlib
:
master
from
dstansby
:
markeredgecolor-warning
Dec 21, 2016
Conversation
0
Commits
1
Files changed
1
Changes from
all commits
Commits
Show all changes
1 commit
Select commit
3a4a6f0
Fix warning when setting markeredgecolor to a numpy array
dstansby
Dec 21, 2016
1 file
Jump to file
No files or symbols found.
+1
−1
lines.py
lib/matplotlib/lines.py
+1
−1
Unified
Split
Show comments
View
2
lib/matplotlib/lines.py
@@ -1157,7 +1157,7 @@ def set_markeredgecolor(self, ec):
"""
if
ec
is
None
:
ec
=
'
auto
'
-
if
self
._markeredgecolor
!=
ec:
+
if
self
._markeredgecolor
is
None
or
self
._markeredgecolor
!=
ec:
self
.stale
=
True
self
._markeredgecolor
=
ec
Toggle all file notes
You can't perform that action at this time.
You signed in with another tab or window.
Reload
to refresh your session.
You signed out in another tab or window.
Reload
to refresh your session.