File tree 3 files changed +4
-4
lines changed
3 files changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -339,7 +339,7 @@ def _interpolate_scipy_wrapper(
339
339
}
340
340
341
341
if getattr (x , "is_all_dates" , False ):
342
- # GH 5975, scipy.interp1d can't hande datetime64s
342
+ # GH 5975, scipy.interp1d can't handle datetime64s
343
343
x , new_x = x ._values .astype ("i8" ), new_x .astype ("i8" )
344
344
345
345
if method == "pchip" :
Original file line number Diff line number Diff line change 22
22
from pandas .plotting ._matplotlib import converter
23
23
except ImportError :
24
24
# try / except, rather than skip, to avoid internal refactoring
25
- # causing an improprer skip
25
+ # causing an improper skip
26
26
pass
27
27
28
28
pytest .importorskip ("matplotlib.pyplot" )
Original file line number Diff line number Diff line change 2
2
import warnings
3
3
4
4
# TODO `_matplotlib` module should be private, so the plotting backend
5
- # can be change . Decide whether all these should be public and exponsed
5
+ # can be changed . Decide whether all these should be public and exposed
6
6
# in `pandas.plotting`, or remove from here (I guess they are here for
7
- # legacy reasons
7
+ # legacy reasons)
8
8
from pandas .plotting ._matplotlib .converter import (
9
9
DatetimeConverter ,
10
10
MilliSecondLocator ,
You can’t perform that action at this time.
0 commit comments