8000 Fix flake8 complaints · matplotlib/matplotlib@b7b8a15 · GitHub
[go: up one dir, main page]

Skip to content
65FD

Commit b7b8a15

Browse files
committed
Fix flake8 complaints
1 parent 5bbd442 commit b7b8a15

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

tools/make_icons.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,7 @@ def save_icon(fig, dest_dir, name, add_black_fg_color):
4343
svg_bytes_io = BytesIO()
4444
fig.savefig(svg_bytes_io, format='svg')
4545
svg = svg_bytes_io.getvalue()
46-
before, sep, after =svg.rpartition(b'\nz\n"')
46+
before, sep, after = svg.rpartition(b'\nz\n"')
4747
svg = before + sep + b' style="fill:black;"' + after
4848
(dest_dir / (name + '.svg')).write_bytes(svg)
4949
else:

0 commit comments

Comments
 (0)
0