Skip to content

Commit 5b71285

Browse files
committed
Flake8 fixes for make_logo
1 parent 42e5f98 commit 5b71285

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

make_logo.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,8 @@
11
import numpy as np
2-
import matplotlib as mpl
32
import matplotlib.pyplot as plt
43
import matplotlib.cm as cm
54
import matplotlib.font_manager
6-
from matplotlib.patches import Circle, Rectangle, PathPatch
5+
from matplotlib.patches import Rectangle, PathPatch
76
from matplotlib.textpath import TextPath
87
import matplotlib.transforms as mtrans
98

@@ -131,6 +130,7 @@ def make_logo(height_px, lw_bars, lw_grid, lw_border, rgrid, with_text=False):
131130

132131
return fig, ax
133132

133+
134134
make_logo(height_px=110, lw_bars=0.7, lw_grid=0.5, lw_border=1,
135135
rgrid=[1, 3, 5, 7], with_text=True)
136136
plt.savefig("mpl_logo.png")

0 commit comments

Comments
 (0)