We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent b40d7e8 commit bf55a44Copy full SHA for bf55a44
matplotlib2tikz/line2d.py
@@ -58,7 +58,7 @@ def draw_line2d(data, obj):
58
mark_options = ['solid']
59
if extra_mark_options:
60
mark_options.append(extra_mark_options)
61
- if marker_face_color in [None, 'none']:
+ if marker_face_color is None or marker_face_color == 'none':
62
mark_options.append('fill opacity=0')
63
else:
64
data, face_xcolor, _ = mycol.mpl_color2xcolor(
test/helpers.py
@@ -144,7 +144,6 @@ def assert_phash(fig, reference_phash):
144
print('Uploaded output PNG file to %s' % out.decode('utf-8'))
145
146
assert reference_phash == phash
147
-
148
return
149
150
0 commit comments