File tree Expand file tree Collapse file tree 1 file changed +6
-5
lines changed
pandas/plotting/_matplotlib Expand file tree Collapse file tree 1 file changed +6
-5
lines changed Original file line number Diff line number Diff line change 1919)
2020import warnings
2121
22+ import matplotlib as mpl
2223import numpy as np
2324
2425from pandas ._libs import lib
5657)
5758from pandas .core .dtypes .missing import isna
5859
59- import matplotlib as mpl
6060import pandas .core .common as com
6161
6262from pandas .io .formats .printing import pprint_thing
8484)
8585
8686if TYPE_CHECKING :
87+ from matplotlib .artist import Artist
88+ from matplotlib .axes import Axes
89+ from matplotlib .axis import Axis
90+ from matplotlib .figure import Figure
91+
8792 from pandas ._typing import (
8893 IndexLabel ,
8994 NDFrameT ,
9095 PlottingOrientation ,
9196 npt ,
9297 )
9398
94- from matplotlib .artist import Artist
95- from matplotlib .axes import Axes
96- from matplotlib .axis import Axis
97- from matplotlib .figure import Figure
9899 from pandas import (
99100 DataFrame ,
100101 Index ,
You can’t perform that action at this time.
0 commit comments