Skip to content

Commit 91f16c2

Browse files
committed
Fix marker facecolors
1 parent f82cad9 commit 91f16c2

File tree

1 file changed

+0
-1
lines changed

1 file changed

+0
-1
lines changed

scripts/markers.py

-1
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,6 @@
2727
".", "o", "s", "P", "X", "*", "p", "D", "<", ">", "^", "v", ]
2828
for x, y, marker in zip(X, Y, markers):
2929
if y == 3: fc = "white"
30-
elif y == 2: fc = "None"
3130
else: fc = "C1"
3231
plt.scatter(x, 1+y, s=100, marker=marker, fc=fc, ec="C1", lw=0.5)
3332

0 commit comments

Comments
 (0)