File tree Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Original file line number Diff line number Diff line change 22
22
)
23
23
24
24
import pandas ._libs .testing as _testing
25
+ from pandas ._typing import FrameOrSeries
25
26
from pandas .compat import _get_lzma_file , _import_lzma
26
27
27
28
from pandas .core .dtypes .common import (
53
54
Series ,
54
55
bdate_range ,
55
56
)
56
- from pandas ._typing import FrameOrSeries
57
57
from pandas .core .algorithms import take_1d
58
58
from pandas .core .arrays import (
59
59
DatetimeArray ,
@@ -101,7 +101,7 @@ def reset_display_options():
101
101
pd .reset_option ("^display." , silent = True )
102
102
103
103
104
- def round_trip_pickle (obj : FrameOrSeries , path : Optional [str ] = None ):
104
+ def round_trip_pickle (obj : FrameOrSeries , path : Optional [str ] = None ) -> FrameOrSeries :
105
105
"""
106
106
Pickle an object and then read it again.
107
107
You can’t perform that action at this time.
0 commit comments