8000 Silence an unused import warning. · matplotlib/matplotlib@89d05ca · GitHub
[go: up one dir, main page]

Skip to content

Commit 89d05ca

Browse files
committed
Silence an unused import warning.
Since this is on a bugfix branch, don't remove the import in case it's in use. And fix a missing empty line.
1 parent 5cfec07 commit 89d05ca

File tree

2 files changed

+2
-1
lines changed

2 files changed

+2
-1
lines changed

lib/matplotlib/bezier.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,7 @@
1010

1111
import matplotlib.cbook as cbook
1212

13+
1314
# same algorithm as 3.8's math.comb
1415
@np.vectorize
1516
@lru_cache(maxsize=128)

lib/matplotlib/figure.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@
2828

2929
from matplotlib.axes import Axes, SubplotBase, subplot_class_factory
3030
from matplotlib.blocking_input import BlockingMouseInput, BlockingKeyMouseInput
31-
from matplotlib.gridspec import GridSpec, SubplotSpec
31+
from matplotlib.gridspec import GridSpec, SubplotSpec # noqa: F401
3232
import matplotlib.legend as mlegend
3333
from matplotlib.patches import Rectangle
3434
from matplotlib.text import Text

0 commit comments

Comments
 (0)
0