Skip to content

Commit 5fd42ee

Browse files
committed
Fix lint and stubtest
1 parent b5251f4 commit 5fd42ee

File tree

3 files changed

+8
-3
lines changed

3 files changed

+8
-3
lines changed

lib/matplotlib/axes/_axes.pyi

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
from matplotlib.axes._base import _AxesBase, coords_type
1+
from matplotlib.axes._base import _AxesBase
22
from matplotlib.axes._secondary_axes import SecondaryAxis
33

44
from matplotlib.artist import Artist

lib/matplotlib/offsetbox.pyi

-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,4 @@
11
import matplotlib.artist as martist
2-
from matplotlib.axes._base import coords_type
32
from matplotlib.backend_bases import RendererBase, Event, FigureCanvasBase
43
from matplotlib.colors import Colormap, Normalize
54
import matplotlib.text as mtext

lib/matplotlib/pyplot.py

+7-1
Original file line numberDiff line numberDiff line change
@@ -120,7 +120,13 @@
120120
from matplotlib.patches import FancyArrow, StepPatch, Wedge
121121
from matplotlib.quiver import Barbs, Quiver, QuiverKey
122122
from matplotlib.scale import ScaleBase
123-
from matplotlib.typing import ColorType, CoordsType, LineStyleType, MarkerType, HashableList
123+
from matplotlib.typing import (
124+
ColorType,
125+
CoordsType,
126+
HashableList,
127+
LineStyleType,
128+
MarkerType,
129+
)
124130
from matplotlib.widgets import SubplotTool
125131

126132
_P = ParamSpec('_P')

0 commit comments

Comments
 (0)